毎秒 2 ピクセルで動くようにアニメーションの速度を設定するにはどうすればよいですか? ここで、ブロックの長さは 310 px です。毎秒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();
})