亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jQuery自訂動畫函

jQuery 動畫 - animate() 方法

#? ?jQuery animate() 方法用於建立自訂動畫。

語法:

$(selector).animate({params},speed,callback);

???必要的 params 參數(shù)定義形成動畫的 CSS 屬性。

???可選的 speed 參數(shù)規(guī)定效果的長度。它可以取以下值:"slow"、"fast" 或毫秒。

???可選的 callback 參數(shù)是動畫完成後執(zhí)行的函數(shù)名稱。

???下面的範(fàn)例示範(fàn)animate() 方法的簡單應(yīng)用;它把<div> 元素移到左邊,直到left 屬性等於250 像素為止:

<!DOCTYPE html>  
<html>  
<head>  
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>

<script>  
$(document).ready(function(){  
  $("button").click(function(){  
    $("div").animate({left:'250px'});  
  });  
});  
</script>  
</head>  
<body>  
<button>開始動畫</button>  
<p>默認(rèn)情況下,所有 HTML 元素的位置都是靜態(tài)的,并且無法移動。如需對位置進(jìn)行操作,記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute。</p>  
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">  
</div>  
</body>  
</html>

QQ截圖20161024092524.png

##提示:預(yù)設(shè)地,所有HTML 元素都有一個(gè)靜態(tài)位置,且無法移動。若要對位置進(jìn)行操作,請記得先把元素的 CSS position 屬性設(shè)為 relative、fixed 或 absolute! jQuery animate() - 操作多個(gè)屬性

#請注意,生成動畫的過程中可同時(shí)使用多個(gè)屬性:QQ截圖20161024092556.png

<!DOCTYPE html>  
<html>  
<head>  
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>  
 
<script>  
$(document).ready(function(){  
  $("button").click(function(){  
    $("div").animate({  
      left:'250px',  
      opacity:'0.5',  
      height:'150px',  
      width:'150px'  
    });  
  });  
});  
</script>  
</head>  
<body>  
<button>開始動畫</button>  
<p>默認(rèn)情況下,所有 HTML 元素的位置都是靜態(tài)的,并且無法移動。如需對位置進(jìn)行操作,記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute。</p>  
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">  
</div>  
</body>

?提示:可以用animate() 方法來操作所有CSS 屬性,不過,需要記住一件重要的事情:當(dāng)使用animate() 時(shí),必須使用Camel 標(biāo)記法書寫所有的屬性名,例如,必須使用paddingLeft 而不是padding-left,使用marginRight 而不是margin-right,等等。同時(shí),色彩動畫並不包含在核心 jQuery 函式庫中。如果需要產(chǎn)生顏色動畫,您需要從 jQuery.com 下載 Color Animations 外掛程式。 jQuery animate() - 使用相對值

#也可以定義相對值(該值相對於元素的當(dāng)前值)。需要在值的前面加上 += 或 -=:

QQ截圖20161024092620.png

<!DOCTYPE html>  
<html>  
<head>  
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>  
$(document).ready(function(){  
  $("button").click(function(){  
    $("div").animate({  
      left:'250px',  
      height:'+=150px',  
      width:'+=150px'  
    });  
  });  
});  
</script>  
</head>  
<body>  
<button>開始動畫</button>  
<p>默認(rèn)情況下,所有 HTML 元素的位置都是靜態(tài)的,并且無法移動。如需對位置進(jìn)行操作,記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute。</p>  
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">  
</div>  
</body>  
</html>

######

jQuery animate() - 使用預(yù)先定義的值


QQ截圖20161024092639.png

#您甚至可以把屬性的動畫值設(shè)為"show"、"hide" 或"toggle":

<!DOCTYPE html>  
<html>  
<head>  
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> 
<script>  
$(document).ready(function(){  
  $("button").click(function(){  
    $("div").animate({  
      height:'toggle'  
    });  
  });  
});  
</script>  
</head>  
<body>  
<button>開始動畫</button>  
<p>默認(rèn)情況下,所有 HTML 元素的位置都是靜態(tài)的,并且無法移動。如需對位置進(jìn)行操作,記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute。</p>  
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">  
</div>  
</body>  
</html>

##jQuery animate() - 使用佇列功能

QQ截圖20161024092702.png

################?預(yù)設(shè)地,jQuery 提供針對動畫的佇列功能。這意味著如果您在彼此之後編寫多個(gè) animate() 調(diào)用,jQuery 會建立包含這些方法調(diào)用的「內(nèi)部」隊(duì)列。然後逐一運(yùn)行這些 animate 調(diào)用。 ######實(shí)例:如果您希望在彼此之後執(zhí)行不同的動畫,那麼我們要利用佇列功能###
<!DOCTYPE html>  
<html>  
<head>  
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>  
$(document).ready(function(){  
  $("button").click(function(){  
    var div=$("div");  
    div.animate({height:'300px',opacity:'0.4'},"slow");  
    div.animate({width:'300px',opacity:'0.8'},"slow");  
    div.animate({height:'100px',opacity:'0.4'},"slow");  
    div.animate({width:'100px',opacity:'0.8'},"slow");  
  });  
});  
</script>  
</head>  
<body>  
<button>開始動畫</button>  
<p>默認(rèn)情況下,所有 HTML 元素的位置都是靜態(tài)的,并且無法移動。如需對位置進(jìn)行操作,記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute。</p>  
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">  
</div>  
</body>  
</html>
#########
繼續(xù)學(xué)習(xí)
||
<!doctype html> <html lang="zh"> <head> <meta charset="utf-8"/> <title>jQuery Animation - fadeTo </title> <script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> <script> $(document).ready(function() { $("#divPop").animate( { "opacity": "hide", "width": $(window).width()-100 , "height": $(window).height()-100 }, 2000 ); }); </script> </head> <body> <div id="divPop" style="background-color: #f0f0f0; border: solid 1px #000000; width: 300px; height: 100px; position:absolute;"> <div style="text-align: center;">pop div</div> </div> </body> </html>
提交重置程式碼