Animating background-position via keyframes - HTML CSS CSS

HTML CSS examples for CSS:Animation

Description

Animating background-position via keyframes

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
@keyframes animatedBackground  {<!--from  w  w  w. ja  v  a2  s.c om-->
   

}

@-webkit-keyframes animatedBackground  {
   

}
</style> 
 </head> 
 <body> 
  <div class="logo"></div>  
 </body>
</html>

Related Tutorials