C'est ce que j'ai
.box{
background:#FFF;
-webkit-transition: background 0.5s;
}
.box:hover{
background:#000;
}
Mais cela s’applique aux deux onmouseover et onmouseout actions, mais n’est-il pas possible de les contrôler? Quelque chose comme:
-wekbkit-transition-IN: background 1s;
-webkit-transition-OUT: background 10s;
Redéfinissez simplement votre transition dans le pseudo élément over.
.box{
background: white;
-webkit-transition: background 5s;
}
.box:hover{
background: olive;
-webkit-transition: background 1s;
}
Utilisez un animation (uniquement dans le Webkit actuellement) ou utilisez JS pour ajouter et supprimer les propriétés. Elles seront toujours animées.