代碼
提交代碼
<!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;
/* 使用預(yù)先定義好的動畫,幀動畫 */
animation: change-color 2s steps(5) infinite alternate;
}
/* 定義動畫 */
@keyframes change-color {
from { background: yellow }
to { background: green }
}
</style>
</head>
<body>
<div class="animate"></div>
</body>
</html>
運行結(jié)果