运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <head> <style> div { width: 100px; height: 100px; background: red; position: relative; animation: mymove 5s infinite; animation-delay: 2s; } @keyframes mymove { from {left: 0px;} to {left: 200px;} } </style> </head> <body> <h1>The animation-delay Property</h1> <p>Start the animation after 2 seconds:</p> <div></div> </body> </html>