首页 > 代码库 > 返回顶部/底部3
返回顶部/底部3
<!DOCTYPE html> <html lang="en"> <head> <title>返回顶部/底部</title> <meta charset="UTF-8"> <script src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script> <script type=‘text/javascript‘> //显隐按钮 function showReposBtn() { var clientHeight = $(window).height(); var scrollTop = $(document).scrollTop(); var maxScroll = $(document).height() - clientHeight; //滚动距离超过可视一屏的距离时显示返回顶部按钮 if (scrollTop > clientHeight) { $(‘#retopbtn‘).show(); } else { $(‘#retopbtn‘).hide(); } //滚动距离到达最底部时隐藏返回底部按钮 if (scrollTop >= maxScroll) { $(‘#rebtmbtn‘).hide(); } else { $(‘#rebtmbtn‘).show(); } } window.onload = function() { //获取文档对象 $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $("html") : $("body")) : $("html,body"); //显示按钮 showReposBtn(); } window.onscroll = function() { //滚动时调整按钮显隐 showReposBtn(); } //返回顶部 function returnTop() { $body.animate({ scrollTop: 0 }, 400); } //返回底部 function returnBottom() { $body.animate({ scrollTop: $(document).height() }, 400); } </script> <style type=‘text/css‘> #retopbtn { position: fixed; bottom: 10px; right: 10px; } #rebtmbtn { position: fixed; top: 10px; right: 10px; } </style> </head> <body> <button id=‘rebtmbtn‘ onclick=‘returnBottom()‘>底部</button> <div style="width: 600px; height: 500px; background: #ddd;"></div> <div style="width: 600px; height: 500px; background: #F8B88E;"></div> <div style="width: 600px; height: 500px; background: #BF6969;"></div> <button id=‘retopbtn‘ onclick=‘returnTop()‘>顶部</button> </body> </html>
效果图:
返回顶部/底部3
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。