代碼
提交代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Animate</title>
<style>
/* 清除瀏覽器默認(rèn)邊距 */
* { padding: 0; margin: 0; }
/* 這段代碼是為了居中顯示,不是重點(diǎn),看不懂的話(huà)可以無(wú)視 */
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* 先定義動(dòng)畫(huà),動(dòng)畫(huà)名叫:change-color */
@keyframes change-color {
from /* 0% */ { color: red } /* 紅 */
to /* 100% */ { color: purple } /* 為了方便直接從紅到紫 */
}
.animate {
width: 450px;
height: 100px;
/* 再使用預(yù)先定義好的動(dòng)畫(huà) */
animation: change-color 1s infinite alternate;
/* 動(dòng)畫(huà):動(dòng)畫(huà)名(change-color) 時(shí)長(zhǎng)(1秒) 動(dòng)畫(huà)次數(shù)(無(wú)限) 動(dòng)畫(huà)方向(交替運(yùn)行) */
}
</style>
</head>
<body>
<div class="animate">
<!-- 動(dòng)畫(huà):動(dòng)畫(huà)名(change-color) 時(shí)長(zhǎng)(1秒) 動(dòng)畫(huà)次數(shù)(無(wú)限) 動(dòng)畫(huà)方向(交替運(yùn)行) -->
animation: change-color 1s infinite alternate;
</div>
</body>
</html>
運(yùn)行結(jié)果