Galería de Estilos de Headers

Diseños modernos de headers con efectos y animaciones

Glassmorphism Aurora

HTML
CSS
<header class="header-glass-gradient">
    <div class="logo">AURORA</div>
    <nav>
        <a href="#">Inicio</a>
        <a href="#">Servicios</a>
        <a href="#">Nosotros</a>
        <a href="#">Contacto</a>
    </nav>
</header>
.header-glass-gradient {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.header-glass-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(102, 126, 234, 0.3), 
                transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-glass-gradient .logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.header-glass-gradient nav {
    display: flex;
    gap: 30px;
    z-index: 1;
}

.header-glass-gradient nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.header-glass-gradient nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-glass-gradient nav a:hover::before {
    width: 100px;
    height: 100px;
}

.header-glass-gradient nav a:hover {
    color: white;
}

Neon Cyberpunk

HTML
CSS
<header class="header-neon-cyber">
    <div class="logo">NEON</div>
    <nav>
        <a href="#">Inicio</a>
        <a href="#">Servicios</a>
        <a href="#">Nosotros</a>
        <a href="#">Contacto</a>
    </nav>
</header>
.header-neon-cyber {
    height: 80px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
    border-bottom: 2px solid #00ff88;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.header-neon-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 136, 0.03) 2px,
        rgba(0, 255, 136, 0.03) 4px
    );
    pointer-events: none;
}

.header-neon-cyber .logo {
    font-size: 28px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88, 
                 0 0 20px #00ff88, 
                 0 0 30px #00ff88;
    animation: neonFlicker 2s infinite alternate;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes neonFlicker {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px #00ff88, 
                     0 0 20px #00ff88, 
                     0 0 30px #00ff88;
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 5px #00ff88, 
                     0 0 10px #00ff88, 
                     0 0 15px #00ff88;
    }
}

.header-neon-cyber nav {
    display: flex;
    gap: 30px;
}

.header-neon-cyber nav a {
    color: #00ff88;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #00ff88;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.header-neon-cyber nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00ff88;
    transition: left 0.3s;
    z-index: -1;
}

.header-neon-cyber nav a:hover {
    color: #0a0a0a;
    box-shadow: 0 0 15px #00ff88, 
                inset 0 0 15px rgba(0, 255, 136, 0.3);
}

.header-neon-cyber nav a:hover::before {
    left: 0;
}

Neon Cyberpunk

HTML
CSS
<header class="header-glassmorphism">
    <div class="logo">GLASS</div>
    <nav>
        <a href="#">Inicio</a>
        <a href="#">Servicios</a>
        <a href="#">Nosotros</a>
        <a href="#">Contacto</a>
    </nav>
</header>
 .header-glassmorphism {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    color: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 0 0 15px 15px;
}

.header-glassmorphism .logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.header-glassmorphism nav {
    display: flex;
    gap: 25px;
}

.header-glassmorphism nav a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}

.header-glassmorphism nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #0ff;
}

Más estilos próximamente...

Estamos trabajando en nuevos diseños de headers innovadores