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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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