Skip to content

Instantly share code, notes, and snippets.

@kevinacuna1
Forked from codigoconjuan/style.css
Created November 3, 2025 03:30
Show Gist options
  • Select an option

  • Save kevinacuna1/0cde2fa24aa3c7c77e8c1afd2843f009 to your computer and use it in GitHub Desktop.

Select an option

Save kevinacuna1/0cde2fa24aa3c7c77e8c1afd2843f009 to your computer and use it in GitHub Desktop.
Menú con Animaciones en WordPress
.menu-principal a::before,
.menu-principal a::after {
position: absolute;
left: 0;
content: '';
display: block;
width: 100%;
height: 50%;
background-color: var(--primario);
z-index: -1;
transform: scaleX(0);
transition: transform .6s;
}
.menu-principal a::before {
top: 0;
transform-origin: left;
}
.menu-principal a::after {
top:50%;
transform-origin: right;
}
.menu-principal a:hover::before {
transform: scaleX(1);
}
.menu-principal a:hover::after {
transform: scaleX(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment