午後
問題:アニメーションで上にスクロールする代わりに、「上に戻る」ボタン(下にスクロールした後の右下隅)が右にジャンプします。
例はhttp://www.pixsters.beで見つけることができます
私のhtml:
<a href="#top" id="homebacktothetop"><span>backtothetop</span></a>
私のjs(jquery):
// scroll to 0 when clicked
$('#homebacktothetop').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});