通过 CSS 设置元素以保留最后一个关键帧设置的样式值
要设置元素以保留第一个关键帧设置的样式值,请将 animation-fill-mode 属性与 forwards 值配合使用。
示例
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; animation-fill-mode: forwards; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div></div> </body> </html>
广告