Answers for "css transform time"

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

css transform duration

transition-duration: 0.5s;
Posted by: Guest on May-25-2021

Browse Popular Code Answers by Language