scale up and scale down animation in css

Solutions on MaxInterview for scale up and scale down animation in css by the best coders in the world

showing results for - "scale up and scale down animation in css"
Cyrielle
14 Aug 2017
1@-webkit-keyframes scaling {
2From {
3    -webkit-transform: scale(1.0);
4}
5To {
6    -webkit-transform: scale(2.0);
7}
8
9#treeLeaves {
10-webkit-animation: scaling 5s infinite alternate;
11}
12