Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> body { background-color: #eee; animation: mymove 5s infinite; } @keyframes mymove { 30% { background-color: #1c87c9; } } </style> </head> <body> <h2> Animation of background-color property</h2> <p> In this example it gradually changes the background color from grey to blue, and back to grey. </p> </body> </html>