Codigo para agregar barra deslizante en el menu | Develop Site
Si te gusta enriquecer la forma en que se ve tu menu principal, esta puede ser una buena opcion
- #top-menu .current-menu-item a::before,
- #top-menu .current_page_item a::before {
- content: "";
- position: absolute;
- z-index: 2;
- left: 0;
- right: 0;
- }
- #top-menu li a:before {
- content: "";
- position: absolute;
- z-index: -2;
- left: 0;
- right: 100%;
- bottom: 50%;
- background: #15bf86; /*** COLOR DE LA LINEA INFERIOR ***/
- height: 3px; /*** GROSOR DE LA LINEA INFERIOR ***/
- -webkit-transition-property: right;
- transition-property: right;
- -webkit-transition-duration: 0.3s;
- transition-duration: 0.3s;
- -webkit-transition-timing-function: ease-out;
- transition-timing-function: ease-out;
- }
- #top-menu li a:hover {
- opacity: 1 !important;
- }
- #top-menu li a:hover:before {
- right: 0;
- }
- #top-menu li li a:before {
- bottom: 10%;
- }
Español
- blog de ernesto
- Log in or register to post comments