关于animate step的now问题

$("#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一般取的是后面的值,如何选择不同的值?

不知名的冯程序员
浏览 1108回答 1
1回答

qq_昼绽_0

用两个参数不行?
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery