SPINNING IMAGES/GIFS TUTORIAL

CODE:

<style>


.rotate { animation: rotation 8s infinite linear; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } } 


</style>


<img src="UR URL" class="rotate" width="200">


0 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )