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

jquery動畫animate使用

Original 2018-12-26 16:23:15 172
abstract:如需對位置進行操作,要記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute!$("button").click(function(){  $("div").animate({    left:'250px',    opacity:'

如需對位置進行操作,要記得首先把元素的 CSS position 屬性設(shè)置為 relative、fixed 或 absolute!

$("button").click(function(){
 $("div").animate({
   left:'250px',
   opacity:'0.5',
   height:'150px',
   width:'150px'
 });
});

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

$("button").click(function(){
 $("div").animate({
   height:'toggle'
 });
});

Release Notes

Popular Entries