首页 > 代码库 > 使用 jQuery 页面回到顶部
使用 jQuery 页面回到顶部
function backTop() { $(window).scroll(function () { if ($(window).scrollTop() > 100) { $("#topImg").fadeIn(1000); } else { $("#topImg").fadeOut(1000); } }); //当点击跳转链接后,回到页面顶部位置 $("#topImg").click(function () {
//考虑到兼容性使用 body 和 html $(‘body,html‘).animate({ scrollTop: 0 }, 800); return false; });}
CSS 样式和HTML中的跳转图片设置如下:
#topImg{ position:fixed; right:15px; bottom:30px; display:none;} <img id="topImg" src="http://www.mamicode.com/images/top.PNG" />
使用 jQuery 页面回到顶部
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。