ホームページ > 記事 > ウェブフロントエンド > 詳細なコード説明 jQuery はアンカーポイントの下方向のスムーズなスクロール効果を実装します
この記事では主に、アンカー ポイントの下向きスムーズ スクロール効果を実装する jQuery の例を紹介します。編集者はこれがとても良いものだと思ったので、皆さんの参考として今から共有します。編集者をフォローして見てみましょう。皆さんのお役に立てれば幸いです。
実装効果:
実装原理:
jQuery animate() メソッドを使用して、スムーズなページスクロール効果を実現します
$('html, body').animate({ scrollTop: $(hash).offset().top }, 800, function(){ window.location.hash = hash; });
簡単なサンプルコード:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ // Add smooth scrolling to all links $("a").on('click', function(event) { // Make sure this.hash has a value before overriding default behavior if (this.hash !== "") { // Prevent default anchor click behavior event.preventDefault(); // Store hash var hash = this.hash; // Using jQuery's animate() method to add smooth page scroll // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area $('html, body').animate({ scrollTop: $(hash).offset().top }, 800, function(){ // Add hash (#) to URL when done scrolling (default click behavior) window.location.hash = hash; }); } // End if }); }); </script> <style> body, html, .main { height: 100%; } section { min-height: 100%; } </style> </head> <body> <a href="#section2" rel="external nofollow" style=" font-size: 30px; font-weight: bold; text-align: center; ">点击此处平滑滚动到第二部分</a> <p class="main"> <section></section> </p> <p class="main" id="section2"> <section style=" background-color: #03c03c; color: #fff; font-size: 30px; text-align: center"> SECTION 2 </section> </p> </body> </html>
関連おすすめ:
angularjsでテキストの上下シームレスなスクロール特殊効果コードを実現
CSS3+JQUERYページスクロール特殊効果code_html/css_WEB-ITnose
以上が詳細なコード説明 jQuery はアンカーポイントの下方向のスムーズなスクロール効果を実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。