web-dev-qa-db-fra.com

CSS Webkit Transition - Fondu en fondu lent que Fondu en entrée

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;
16
Adam

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;
}

Look my http://jsfiddle.net/DoubleYo/nY8U8/

30
Yoann

Utilisez un animation (uniquement dans le Webkit actuellement) ou utilisez JS pour ajouter et supprimer les propriétés. Elles seront toujours animées.

0
Rich Bradshaw