Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: #ccc; position: relative; animation: play 10s; animation-play-state: running; } @keyframes play { from {left: 0px;} to {left: 200px;} } </style> </head> <body> <h2>Beispiel für animation-play-state</h2> <p>Hier ist animation-play-state auf "running" gesetzt.</p> <div></div> </body> </html>