您好,欢迎访问一九零五行业门户网

使用 CSS 设置动画完成一个周期所需的时间

使用animation-duration属性来设置动画完成一个循环所需的时间:
示例在线演示
<!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>
以上就是使用 css 设置动画完成一个周期所需的时间的详细内容。
其它类似信息

推荐信息