HTML CSS examples for CSS:Quiz
Set animation to have a "1" second delay before starting.
<!DOCTYPE html> <html> <head> <style> div {<!--from ww w.j av a 2 s .co m--> width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 2s; animation-delay: 1s; } @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>