Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> div { width: 100px; height: 100px; background: #ccc; position: relative; animation: delay 5s 1; animation-delay: -2s; } @keyframes delay { from {left: 0px;} to {left: 300px;} } </style> </head> <body> <h2>Exemple de animation-delay avec une valeur négative.</h2> <p>Ici, l'animation commencera jouer comme si elle jouait pour 2 secondes .</p> <div></div> </body> </html>