誰能為我寫個簡單的例子,格式清楚的!
// 在一个动画中同时应用三种类型的效果,animate()里面用键值对表示 $("#a").click(function(){ //绑定一个点击事件 $("#b").animate({ width: "90%", //设置点击之后需要改变之后的样式,以达到动画效果 height: "100%", fontSize: "10em", borderWidth: 10 }, 1000 ); //动画的过度时间 1000<a href="https://www.baidu.com/s?wd=%E6%AF%AB%E7%A7%92&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1Y3nWfYPHR3nHmsP1Nhrjmz0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EPHfYPHcsrHR3" target="_blank" class="baidu-highlight">毫秒</a> });
:animated 用來判斷一個元素是否【尚在】執行動畫
$(function() { // 开始动画 $("#box").animate({left: 500}, 5000); $(document).on("click", function() { // 在选择器中使用 if($("#box:animated").length) { $("body").append("<p>#box 尚在动画</p>"); } // 在 is 中使用 if(!$("#box").is(":animated")) { $("body").append("<p>#box 动画停止</p>"); } }); });
<div id="box" style="width: 100px; height: 100px; background: #f00; position: absolute;"></div>
以前學習的時候寫的,希望對你有幫助。
<html> <head> <script type="text/javascript" src="jquery-1.7.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("#box").animate({height:300,width:400},"slow"); $("#box").animate({width:300},"fast"); $("#box").animate({height:100},"normal"); $("#box").animate({width:100},"slow"); }); }); </script> </head> <body> <button>click me</button> <div id="box" style="background-color:#000000;height:100px;width:100px"> </div> </body> </html>
語法結構:
$(":animated")
此選擇器一般也要和其他選擇器搭配使用,例如類別選擇器和元素選擇器等等。例如:
$("li:animated").css("background-color","blue")
以上程式碼能夠將正在執行動畫下過的li元素的背景顏色設定為藍色。
如果不和其他選擇器配合使用,則預設狀態是和*選擇器一起使用,例如$(":animated")等同於$("*:animated")。
以上是jquery :animated選擇器如何使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!