使用animation-duration屬性來(lái)設(shè)置動(dòng)畫(huà)完成一個(gè)循環(huán)所需的時(shí)間:
示例
在線演示
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div> </div> </body> </html>
登錄后復(fù)制
以上就是使用 CSS 設(shè)置動(dòng)畫(huà)完成一個(gè)周期所需的時(shí)間的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!