CSS动画延迟属性
使用animation-delay属性设置使用CSS动画开始的延迟。
您可以尝试运行以下代码以实现animation-delay属性-
示例
<!DOCTYPE html><html>
<head>
<style>
div {
width: 150px;
height: 200px;
background-color: yellow;
animation-name: myanim;
animation-duration: 2s;
animation-delay: 2s;
}
@keyframes myanim {
from {
background-color: green;
}
to {
background-color: blue;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
以上是 CSS动画延迟属性 的全部内容, 来源链接: utcz.com/z/359938.html