Answers for "animation css scale"

CSS
0

css animation scale image

css

.btn {
  transition: transform 250ms, opacity 400ms;
}

.btn:hover {
  transform: scale(1.2);
  opacity: 0;
}
Posted by: Guest on February-22-2021
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