HTML CSS examples for CSS Animatable Property:background
Change background position in animation
<html> <head> <meta name="description" content="animate using css, using step"> <style> body {<!-- w w w . j a va2 s . c o m--> width: 100%; } .animate { background-image: url(https://www.java2s.com/style/demo/InternetExplorer.png); width: 100%; height:500px; background-size: 500% auto; animation:play 2s infinite steps(5); -webkit-animation:play 2s infinite steps(5); } @keyframes play { 0% { background-position: 0, 0; } 100% { background-position: 500%, 0; } } @-webkit-keyframes play { 0% { background-position: 0, 0; } 100% { background-position: 500%, 0; } } </style> </head> <body> <div class="animate"></div> > </body> </html>