如何设置动画速度使其以每秒 2 个像素的速度移动?这里我的块的长度是 310 像素。我希望它以每秒 2 个像素的速度移动。
$('#one').mouseenter(function(){
$('.alt0').animate({width: "310px"}, 150000, function(){
$('#refresh-1').show();
})
$('#song-title1').show()
});
$('#refresh-1').click(function(){
$('.alt0').width(0);
$(this).hide();
})