<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #eee;
animation: mymove 5s infinite;
}
@keyframes mymove {
30% {background-color: #1c87c9;}
}
</style>
</head>
<body>
<h2> Animation de la propriété background-color</h2>
<p>Dans cet exemple la couleur du fond change graduellement de gris à bleu, et revient à gris.
<p>
</body>
</html>