HTML CSS examples for CSS:Quiz
Set the animation to loop for ever.
<!DOCTYPE html> <html> <head> <style> div {<!--from ww w . j a va 2s . c om--> width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes example { 0% {background-color: red; left:0px;} 50% {background-color: yellow; left:200px;} 100% {background-color: red; left:0px;} } </style> </head> <body> <div></div> </body> </html>