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'
});
});