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