jQuery addClass example

Change class name on click in jQuery

by Sascha

HTML

<div style="text-align: center;">
<img...

CSS

img {
animation-name: spin;
    animation-duration: 1400ms;
    animation-iteration-count: infinite;
     animation-timing-function: ease-in-out;
     margin: 64px;

 
}

  @keyframes spin { 
        from { 
            transform: rotate(0deg); 
        } to { 
            transform: rotate(360deg); 
        }
    }