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>Exemple de animation-play-state</h2> <p>Ici animation-play-state est définie comme "running".</p> <div></div> </body> </html>