Answers for "how to make transfrom animation in cs"

CSS
-1

opacity transition in css

/*
Opacity transition in CSS

By using this we can add element transition with some delay.
And due to transition delay its look like animation of element.
*/

div {
  transition: opacity 0.5s; /* Transition should take 0.3s */
  -webkit-transition: opacity 0.5s; /* Transition should take 0.3s */
  opacity: 1; /* Set opacity to 1 */
}

/*
I hope it will help you.
Namaste
*/
Posted by: Guest on May-10-2020
2

css transform transition

.selector {
  transition: transform 1s;
}
Posted by: Guest on May-27-2020

Code answers related to "how to make transfrom animation in cs"

Browse Popular Code Answers by Language