+ 1
Transition and translate functions combined.
Is it possible to somehow combine the transition property with any translate function? say i wanna make a div scale up when its hovered with a time delay of 3 seconds.... is it possible?
1 Resposta
+ 3
Transiotion is an effect
But transform is an action :
div {
transition: transform 1s;
}
div:hover {
transform: skewX(-20px);
}