2
respostas

Delay no hover

Tentei aplicar um delay no hover, mas nao vai de jeito nenhum.

Meu css:

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 0 2rem;
}

header ul {
    display: flex;
}

header li{
    list-style: none;    
}

header li:last-child a{
    margin-right:0;
}

header li a#primeiro{
    color:#ee6666;
    font-weight: bold;
}

header li:hover{
    text-decoration: underline; 
    transition-delay: 5s;
}

header a {
    color:#808080;
    margin-right: 1.25rem;
    text-decoration: none;
}
2 respostas

Oi mano, td bem?

A propriedade transition você precisa defini-lá, no elemento em si, não no pseudo elemento :hover

header li:{
    transition-delay: 5s;
}

depois diz aí se funcionou, blz?!

Ainda assim nao funciona :/