1
アニメーションを使用してページ1750pxを上からスクロールします。私は以下を試してみるとうまくいかない。jQueryをアニメーションでスクロールする方法は?
$('#trailer').click(function() {
event.preventDefault();
//$(window).scrollTop(1750); // I want to animate this.
$(window).animate(
{top: 1750},
200);
return false;
});