码迷,mamicode.com
首页 > 其他好文 > 详细

页面底部的回到顶部的按钮实现

时间:2015-09-23 16:50:20      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

$(function(){
		//返回顶部
		$(‘.btop‘).hover(function(){
			$(this).find(‘img‘).attr(‘src‘,‘${base!}/${img_path!}/backtop2.gif‘);
		},function(){
			$(this).find(‘img‘).attr(‘src‘,‘${base!}/${img_path!}/backtop1.gif‘);
		});
		window.onscroll = function(){
			var scrT = document.documentElement.scrollTop || document.body.scrollTop;
			if(scrT > 0){
				$(‘.btop‘).show();
			}else {
				$(‘.btop‘).hide();
			};
		};
		$(‘.btop‘).click(function(){
			document.documentElement.scrollTop = document.body.scrollTop = 0;
			$(‘.btop‘).hide();
		});
	})


<!--返回顶部 开始-->
<a href="javascript:void(0)" class="btop"><img src="${base!}/${img_path!}/backtop1.gif" /></a>
<!--返回顶部 结束--> 

 

页面底部的回到顶部的按钮实现

标签:

原文地址:http://www.cnblogs.com/wangxiangstudy/p/4832567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!