Answers for "css transform scale animation"

CSS
3

transition transform

/* Transition Transform */
.section:hover {
  transform: translateX(0px) translateY(75px);
}

.section {
  transition: transform 500ms ease-in-out 25ms;
}
Posted by: Guest on October-11-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

Browse Popular Code Answers by Language