本文實例講述了jQuery中:animated選擇器用法。分享給大家供大家參考。具體分析如下:
此選擇器匹配所有正在執行動畫效果的元素。
可以使用animate()方法創建自定義動畫。
語法結構:
代碼如下:$(":animated")
此選擇器一般也要和其他選擇器配合使用,比如類選擇器和元素選擇器等等。例如:
代碼如下:$("li:animated").css("background-color","blue")
以上代碼能夠將正在執行動畫下過的li元素的背景顏色設置為藍色。
如果不和其他選擇器配合使用,則默認狀態是和*選擇器配合使用,例如$(":animated")等同於$("*:animated")。
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
li{
list-style-type:none;
width:150px;
height:30px;
}
.run{background-color:green;}
.static{background-color:#603;}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
function runit(){
$(".run").animate({width:"250px"});
$(".run").animate({width:"150px"},runit);
}
$("button").click(function(){
runit();
$("li:animated").css("background-color","blue");
})
})
</script>
</head>
<body>
<ul>
<li class="run"></li>
<li class="static"></li>
</ul>
<button>點擊開始動畫</button>
</body>
</html>
以上可以將動畫元素的背景顏色設置為藍色。
希望本文所述對大家的jQuery程序設計有所幫助。