首页
CSS
CSS 动画
试用:使用 animation-fill-mode 属性
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { width: 100px; height: 100px; background: red; position: relative; animation-name: example; animation-duration: 3s; animation-fill-mode: forwards; } @keyframes example { from {top: 0px;} to {top: 200px; background-color: blue;} } </style> </head> <body> <h1>CSS Animation</h1> <p>Let the div element retain the style values set by the last keyframe when the animation ends:</p> <div></div> </body> </html>