CSS动画持续时间属性
使用animation-duration属性设置动画完成一个周期应花费的时间
示例
您可以尝试运行以下代码以实现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>