代码
提交代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animate</title>
<style>
/* 清除默认样式 */
* { padding: 0; margin: 0; }
/* 这段代码是为了居中显示,不是重点,看不懂的话可以无视 */
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.animate {
width: 100px;
height: 100px;
/* 使用预先定义好的动画 */
animation: change-color 2s steps(100) infinite alternate;
}
/* 定义动画 */
@keyframes change-color {
from { background: yellow }
to { background: green }
}
</style>
</head>
<body>
<div class="animate"></div>
</body>
</html>
运行结果