$("#div4").on({
mouseover :function(){
$(this).animate({height:"200px",opacity:0.3},{duration:3000,step:function(now,fx){$("#div4").text("透明度变化:"+now)}})},
mouseout:function(){
$(this).animate({opacity:1, height:"150px", },{duration:3000,step:function(now,fx){$("#div4").text("透明度变化:"+now)}})},
})
});
此时animate中有两个变化的元素 height和opacity,now一般取的是后面的值,如何选择不同的值? |