HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ width: 150px; height: 150px; animation: myAnimation 5s infinite; -webkit-animation: myAnimation 5s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% { -ms-transform: rotate(135deg); /* IE 9 */ -webkit-transform: rotate(135deg); /* Safari 3-8 */ transform: rotate(135deg); } } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { -ms-transform: rotate(135deg); /* IE 9 */ -webkit-transform: rotate(135deg); /* Safari 3-8 */ transform: rotate(135deg); } </style> </head> <body> <h1>CSS Animatable transform</h1> <img src="steering-wheel.png" alt="steering wheel"> </body> </html>
OUTPUT
×

Save as Private