Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

animation not hover out

/* Add animation to normal selector as well, besides hover selector */
div {
  background-color: #333;
  transition: background-color 400ms;
} 

div:hover {
  background-color: #000;
  transition: background-color 400ms;
} 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #animation #hover
ADD COMMENT
Topic
Name
1+7 =