jQuery返回顶部链接

Posted

tags:

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

Courtesy Brian Cray.
  1. $(function(){
  2. /* set variables locally for increased performance */
  3. var scroll_timer,
  4. displayed = false,
  5. $message = $('#message a'),
  6. $window = $(window),
  7. top = $(document.body).children(0).position().top;
  8.  
  9. /* react to scroll event on window */
  10. $window.scroll(function () {
  11. window.clearTimeout(scroll_timer);
  12. scroll_timer = window.setTimeout(function () { // use a timer for performance
  13. if($window.scrollTop() <= top) // hide if at the top of the page
  14. {
  15. displayed = false;
  16. $message.fadeOut(500);
  17. }
  18. else if(displayed == false) // show if scrolling down
  19. {
  20. displayed = true;
  21. $message.stop(true, true).show().click(function () { $message.fadeOut(500); });
  22. }
  23. }, 100);
  24. });
  25. });

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

jQuery返回顶部链接

JQUERY根据页面高度显示返回顶部链接

人人必知的10个jQuery小技巧

jQuery 一句代码返回顶部

JavaScript/Jquery返回顶部代码

jQuery火箭图标返回顶部代码