1
我想用動畫從頂部滾動我的頁面1750px。我嘗試了以下,它不起作用。如何在動畫中滾動jQuery?
$('#trailer').click(function() {
event.preventDefault();
//$(window).scrollTop(1750); // I want to animate this.
$(window).animate(
{top: 1750},
200);
return false;
});