Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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.*/
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #unhover #animation
ADD COMMENT
Topic
Name
6+8 =