在 CSS 中使用最后一个关键帧设置的样式值设置元素
若要设置使用第一个关键帧设置的样式值会保留到元素,请使用具有 forwards 值的 animation-fill-mode 属性。
示例
<!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>
广告