CSS 动画速记属性
设置所有动画属性的简写属性是animation。它设置动画持续时间、动画名称等。
您可以尝试运行以下代码以了解如何使用 Animation Shorthand 属性:
例子
<!DOCTYPE html><html>
<head>
<style>
div {
width: 150px;
height: 200px;
background-color: yellow;
animation: myanim 2s
}
@keyframes myanim {
from {
background-color: green;
}
to {
background-color: blue;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
以上是 CSS 动画速记属性 的全部内容, 来源链接: utcz.com/z/357790.html