Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .element { padding: 50px; animation: backgrounds 4s infinite; } @keyframes backgrounds { 0% { background-color: #8ebf42} 50% { background-color: #1c87c9; } 100% { background-color: #ccc; } } </style> </head> <body> <h2>@keyframes Beispiel</h2> <div class="element">Der Hintergrund dieses Textes ist animiert.</div> </body> </html>