<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #eee;
animation: mymove 5s infinite;
}
@keyframes mymove {
30% {background-color: #1c87c9;}
}
</style>
</head>
<body>
<h2> Animation der Eigenschaft background-color.</h2>
<p>In diesem Beispiel ändert es allmählich die Hintergrundfarbe von grau nach blau und wieder nach grau.
<p>
</body>
</html>