使用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: backwards; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div></div> </body> </html>
登錄后復制
以上就是設置動畫未播放時元素的 CSS 樣式的詳細內容,更多請關注www.92cms.cn其它相關文章!