滾動頁面,然後再執行CSS3 動畫

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>動態CSS3動畫</title>
<style>
* {margin:0; border:0; padding:0;}
body {width:100%; height:2000px;}
#div1 {width:100px; height:100px; background-color:#000; position:relative;}


.ani {animation:myfirst 2s linear forwards; -webkit-animation:myfirst 2s linear forwards;}


@keyframes myfirst {from {left:0; top:0} to {left:400px; top:400px;}}
@-webkit-keyframes myfirst {from {left:0; top:0} to {left:400px; top:400px;}}
</style>


<script>
window.onload = function (){<span style="white-space:pre">	</span> 
<span style="white-space:pre">	</span>window.onscroll = function (){
<span style="white-space:pre">		</span>//兩種方法:1、通過style.cssText寫入樣式;2、通過className添加類。
<span style="white-space:pre">		</span>//document.getElementById("div1").style.cssText = "animation:myfirst 2s linear forwards; -webkit-animation:myfirst 2s linear forwards";
<span style="white-space:pre">		</span>document.getElementById("div1").className = "ani";
<span style="white-space:pre">	</span>}
}
</script>
</head>


<body>
<div id="div1"></div>
<script>
</script>
</body>
</html>
發佈了37 篇原創文章 · 獲贊 24 · 訪問量 13萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章