jqueryがトップとボトムにジャンプするアニメーションの2文のコードは簡単に実現します
1160 ワード
Untitled Page
<br>$(document).ready(function () {
<br>// , ,scrollTop 。
<br>$('#top').click(function () {
<br>$('html').animate(
<br>{ scrollTop: '0px' }, 1000
<br>);
<br>});
<br>// , , offset() , , top,left
<br>//animate, 'slow','normal' 'fast'
<br>$('#foot').click(function () {
<br>$('html').animate(
<br>{scrollTop:$('span').offset().top},1000
<br>);
<br>});
<br>});
<br>
ボトム
トップ