本文实例为大家分享了javascript回到顶部效果,供大家参考,具体内容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <title>回到顶部效果(原生js)</title> <style type="text/css"> body{ margin: 0; } .bg{ width: 1022px; margin: 0 auto; } .btn{ display: none; width: 75px; height: 75px; background:url(../images/网页top小图标(返回顶部)/返回顶部-085.png) no-repeat left top; position: fixed; left: 50%; margin-left: 530px; bottom: 10px; text-indent: -9999px; outline: none; } .btn:hover{ background-position: 0 -75px; } </style> <script> var timer=null; var isScroll=true; //1.2构造oScroll函数 function oScroll(){ var osTop=document.documentElement.scrollTop||document.body.scrollTop;//1.1滚动高度,兼容 var oSpeed=Math.ceil(osTop/4);//滚动速度 document.documentElement.scrollTop=document.body.scrollTop=osTop-oSpeed; if(osTop==0){//判断到达顶部,清理定时器 clearInterval(timer); } isScroll=true; } window.onload=function() { var obtn=document.getElementById('btn');//获取按钮元素 var clientHeight=document.documentElement.clientHeight||document.body.clientHeight; // 1.点击返回按钮事件 btn.onclick=function(){//为按钮绑定点击事件 timer=setInterval(oScroll,50); } window.onscroll=function() { var osTop=document.documentElement.scrollTop||document.body.scrollTop;//1.1滚动高度,兼容 if (osTop>clientHeight) { btn.style.display="block"; }else{ btn.style.display="none"; } if(!isScroll){ clearInterval(timer); } isScroll=false; } } </script> </head> <body> <div class="bg"> <img src="../images/jz.jpg"> </div> <a href="javascript:void(0);" title="返回顶部" id="btn" class="btn">返回顶部</a> </body> </html>
以上就是本文的全部内容,希望对大家学习JavaScript程序设计有所帮助。
返回页面顶部的操作按钮 基础用法 滑动页面即可看到右下方的按钮。 demo <template> Scroll down to see the bottom-right button. <el-backtop target=".page-component__scroll .el-scrollbar__wrap"></el-backtop> </template> 自定义显示内容 显示区
Backtop 回到顶部 返回页面顶部的操作按钮 基础用法 滑动页面即可看到右下方的按钮。 demo <template> Scroll down to see the bottom-right button. <el-backtop target=".page-component__scroll .el-scrollbar__wrap"></el-backtop> </template>
平滑滚动到页面顶部。 使用 document.documentElement.scrollTop 或 document.body.scrollTop 获取到顶部距离。从顶部滚动一小部分距离。使用window.requestAnimationFrame() 来实现滚动动画。 const scrollToTop = () => { const c = document.documentElemen
本文向大家介绍jquery实现的动态回到顶部特效代码,包括了jquery实现的动态回到顶部特效代码的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jquery实现的动态回到顶部特效代码。分享给大家供大家参考,具体如下: 这款jquery动态回到顶部特效,不是一下子就回到了网页顶部,而是带点缓冲的效果,有动画效果,使用了jQuery插件,这是个非常常用的网页特效,希望大家喜欢哦。 运行效果截
本文向大家介绍jQuery实现回到顶部效果,包括了jQuery实现回到顶部效果的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了jQuery实现回到顶部效果的具体代码,供大家参考,具体内容如下 动画:通过点击侧栏导航,页面到达相应的位置 jQuery方法:show(), hide(), animate() 动画效果: 代码: 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家
使用方法:点击快速返回顶部按钮