HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ width: 150px; height: 100px; position: absolute; left:0%; animation: myAnimation 5s infinite; -webkit-animation: myAnimation 5s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% {left: 100%;} } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% {left: 100%;} } </style> </head> <body> <h1>CSS Animatable left</h1> <img src="car-left.png"> </body> </html>
OUTPUT
×

Save as Private