Answers for "css add transition"

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
1

transition syntax css

transition: property duration transition-timing-function delay; 
/*Shorthand Property*/
Posted by: Guest on September-08-2020
-2

css opacity transition

div {
  transition: opacity seconds;
}
Posted by: Guest on March-21-2020

Browse Popular Code Answers by Language