Answers for "css scale transform animation"

CSS
1

transition scale

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet
Posted by: Guest on March-17-2021
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

Browse Popular Code Answers by Language