簡單做個動畫背景改變顏色來加深對 animation & @keyframes 用法印象
HTML:
<div id="myDiv">Block</div>
CSS:
<style>
#myDiv{
width:300px;
height: 200px;
background: red;
animation: mymove 5s infinite;
-webkit-animation: mymove 5s infinite;
}
@keyframes mymove{
from{ background-color:red;}
to{background-color:blue;}
}
</style>
留言
張貼留言