jQuery回顶部

Posted 黄良钵博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery回顶部相关的知识,希望对你有一定的参考价值。

  1. <!-- 返回顶部 -->

  2. <div class="flex align-items-center justify-content-center goTop">回顶部</div>

  3. $(window).scroll(function () {

  4.     /* 判断滚动条 距离页面顶部的距离 100可以自定义*/

  5.     if ($(window).scrollTop() > 100) {

  6.         $(".goTop").fadeIn(100); /* 这里用.show()也可以 只是效果太丑 */

  7.         $('.goTop').css({

  8.             display: 'flex'

  9.         })

  10.     } else {

  11.         $(".goTop").fadeOut(100);

  12.     }

  13. });


  14. // 回顶部

  15. $('.goTop').click(function () {

  16.     $('body,html').animate({

  17.         scrollTop: 0

  18.     }, 500);

  19.     return false;

  20. })



以上是关于jQuery回顶部的主要内容,如果未能解决你的问题,请参考以下文章

jquery 如何实现回顶部 带滑动效果

html Vanilla JavaScript和jQuery版本将页面滑回顶部

jQuery addClass 导致窗口在 Android 和 iPhone 上滚动回顶部

在使用jquery的dialog,不知道为啥每次open后,整个页面就会回到顶部(滚动条被滑至最

jQuery - .animate() 在滚动时非常延迟

jQuery .animate() 不在 IE 中为 backgroundPosition 设置动画