Answers for "unhover animation"

CSS
0

unhover animation

.testButton {
  /*Your base testButton properties*/
  transition: 0.5s;
}

.testButton:hover {
  /*whatever your hover animation is*/
}

/*When you unhover, it'll go back to its original form in the transition time.*/
Posted by: Guest on January-20-2022

Browse Popular Code Answers by Language