Spaces:
Running
Running
File size: 7,956 Bytes
45755db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | class AppHeader extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
header {
background: linear-gradient(180deg, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0.95) 100%);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.search-container {
position: relative;
max-width: 500px;
width: 100%;
}
.search-input {
width: 100%;
padding: 10px 40px 10px 16px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
color: white;
font-size: 14px;
transition: all 0.3s ease;
}
.search-input:focus {
outline: none;
background: rgba(255, 255, 255, 0.15);
border-color: #8b5cf6;
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.search-input::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.search-button {
position: absolute;
right: 4px;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
border: none;
padding: 6px 12px;
border-radius: 8px;
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
.search-button:hover {
transform: translateY(-50%) scale(1.05);
}
.nav-link {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-weight: 500;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover {
color: white;
background: rgba(139, 92, 246, 0.1);
}
.nav-link.active {
color: #8b5cf6;
background: rgba(139, 92, 246, 0.1);
}
.mobile-menu-button {
display: none;
background: none;
border: none;
color: white;
cursor: pointer;
padding: 8px;
}
@media (max-width: 768px) {
.desktop-nav {
display: none;
}
.mobile-menu-button {
display: block;
}
.mobile-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(17, 24, 39, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 16px;
}
.mobile-menu.active {
display: block;
}
}
</style>
<header class="sticky top-0 z-50">
<div class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<!-- Logo -->
<a href="#" class="flex items-center gap-2 text-2xl font-bold bg-gradient-to-r from-purple-400 to-pink-400 bg-clip-text text-transparent">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
</svg>
MangaFlow
</a>
<!-- Search Bar -->
<div class="search-container hidden md:block">
<input type="text" placeholder="Buscar manga, c贸mic o autor..." class="search-input">
<button class="search-button">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="8"></circle>
<path d="m21 21-4.35-4.35"></path>
</svg>
</button>
</div>
<!-- Desktop Navigation -->
<nav class="desktop-nav flex items-center gap-6">
<a href="#trending" class="nav-link active">Inicio</a>
<a href="#library" class="nav-link">Biblioteca</a>
<a href="#lists" class="nav-link">Listas</a>
<a href="#blog" class="nav-link">Blog</a>
<button class="bg-gradient-to-r from-purple-600 to-pink-600 px-4 py-2 rounded-lg font-semibold hover:from-purple-700 hover:to-pink-700 transition-all transform hover:scale-105">
Iniciar Sesi贸n
</button>
</nav>
<!-- Mobile Menu Button -->
<button class="mobile-menu-button" onclick="toggleMobileMenu()">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<div class="flex flex-col gap-4">
<input type="text" placeholder="Buscar..." class="search-input">
<a href="#trending" class="nav-link">Inicio</a>
<a href="#library" class="nav-link">Biblioteca</a>
<a href="#lists" class="nav-link">Listas</a>
<a href="#blog" class="nav-link">Blog</a>
<button class="bg-gradient-to-r from-purple-600 to-pink-600 px-4 py-2 rounded-lg font-semibold">
Iniciar Sesi贸n
</button>
</div>
</div>
</div>
</div>
</header>
`;
}
}
customElements.define('app-header', AppHeader);
// Mobile menu toggle function
function toggleMobileMenu() {
const mobileMenu = document.getElementById('mobileMenu');
if (mobileMenu) {
mobileMenu.classList.toggle('active');
}
} |