I would like to animate the scale and then animate the translateX using transition, is it possible? or should I use animation and keyframe?
I would like to do something like this:
.anima{
transition: transform"scale" 1s, transform"translateX" 2s 1s;
}
.anima{
transform: scale(.95) translateX(90%);
}
.anima:hover{
transform: scale(1) translateX(80%);
}