Horje
css start animation on hover Code Example
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); }           
}




Css

Related
css div bottom of parent Code Example css div bottom of parent Code Example
css input spaces between Code Example css input spaces between Code Example
position an icon in relation a parent element Code Example position an icon in relation a parent element Code Example
css detect if input has value Code Example css detect if input has value Code Example
css for bigger screen size Code Example css for bigger screen size Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12