Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #scale #scale #animation #css
ADD COMMENT
Topic
Name
4+2 =