1
如何設置動畫速度,使其以每秒2像素的速度移動?這裏我的塊的長度是310像素。我希望它以每秒2像素的速度移動。設置每秒2px的動畫速度?
$('#one').mouseenter(function(){
$('.alt0').animate({width: "310px"}, 150000, function(){
$('#refresh-1').show();
})
$('#song-title1').show()
});
$('#refresh-1').click(function(){
$('.alt0').width(0);
$(this).hide();
})