Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css start animation on hover

button{
  animation: rotate360 1.2s linear infinite;  /* animation set */
  animation-play-state: paused;               /* put paused */
}
button:hover{
  animation-play-state: running;              /* trigger on hover */
}
@keyframes rotate360 {                        /* keyframes of animation */
  to { transform: rotate(360deg); }           
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #css #start #animation #hover
ADD COMMENT
Topic
Name
4+9 =