HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> body{ background: #f2f2f2 url("/apple.png") no-repeat fixed; background-position: left; animation: myAnimation 5s infinite; -webkit-animation: myAnimation 5s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% {background-position: right; } } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% {background-position: right;} } </style> </head> <body> <h1>CSS Animatable background-position</h1> </body> </html>
OUTPUT
×

Save as Private