Answers for "transform scale css animation"

CSS
0

scale up and scale down animation in css

@-webkit-keyframes scaling {
From {
    -webkit-transform: scale(1.0);
}
To {
    -webkit-transform: scale(2.0);
}

#treeLeaves {
-webkit-animation: scaling 5s infinite alternate;
}
Posted by: Guest on December-08-2020
0

translate argument animation css'

<div>Static</div>
<div class="moved">Moved</div>
<div>Static</div>
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language