css的動畫效果在style標簽中用@keyframes name{。。。}的形式定義,使用animation:name time 。。。的形式進行調用。 示例: <style> div{width:100px;height:100px;background:red;position:relativ ...
css的動畫效果在style標簽中用@keyframes name{。。。}的形式定義,使用animation:name time 。。。的形式進行調用。
示例:
<style>
@keyframes myfirst
{
0% {background: red; left:0px; top:0px;}
25% {background: yellow; left:200px; top:0px;}
50% {background: blue; left:200px; top:200px;}
75% {background: green; left:0px; top:200px;}
100% {background: red; left:0px; top:0px;}
}
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s;
}
</style>
歡迎評論