Answers for "transform scale animation css"

CSS
4

how to make a button grow in css

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
Posted by: Guest on May-10-2020
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
4

transform multiple css

li:nth-child(2) {
    transform: rotate(15deg) translate(-20px,0px);
}
Posted by: Guest on July-08-2020

Browse Popular Code Answers by Language