Is it possible to animate (using transitions) only one type of css transform?
I have css:
cell{
transform: scale(2) translate(100px, 200px);
tran
No! you cannot use transition
only for certain value of transform
like scale(2)
.
One possible solution would be as follows: (sorry, you have to use additional html)
Hello World
div.scale:hover {
transform: scale(2);
transition: transform 0.25s;
}
div.scale:hover div.translate {
transform: translate(100px,200px);
}