Answers for "transition css valeus"

CSS
0

details transition css

details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0%    {opacity: 0; transform: translateX(-10px)}
  100%  {opacity: 1; transform: translateX(0)}
}
Posted by: Guest on December-16-2021
2

transition syntax css

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

Browse Popular Code Answers by Language