沉沙
2018-06-28
来源 :
阅读 1737
评论 0
摘要:本篇jQuery实战教程通过代码讲解了如何实现置顶功能,希望阅读本篇文章以后大家有所收获,帮助大家对jQuery的理解更加深入。
HTML:
<!--Go to Top--> <div id="Fixed"> <a id="goTop" title="去顶部" href="javascript:;">去顶部</a> </div> <!--Go to Top end-->
CSS:
.fl{
display:block;
float:left;
width:50px;
height:50px;
text-align:center;
background-color:#eaeaea;
background-image:url(../images/toTop.png);
}
.fl:hover{background-color:#f48942;background-image:url(../images/toTop.png);}
#Fixed {
position: fixed;
_position: absolute;
z-index: 100;
bottom: 70px;
left: 50%;
margin-left: 530px;
_bottom: auto;_top:
expression(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-70);
width: 50px;
text-indent: -40000px;
background: #fff
}
/*置顶 end*/
Js:
/*置顶功能*/
$(function(){
$(window).bind('scroll', {
fixedOffsetBottom: parseInt($('#Fixed').css('bottom'))
},
function(e) {
var scrollTop = $(window).scrollTop();
var referFooter =$('#footer');
scrollTop > 100 ? $('#goTop').show() : $('#goTop').hide();
if (!/msie 6/i.test(navigator.userAgent)) {
if ($(window).height() - (referFooter.offset().top - $(window).scrollTop()) > e.data.fixedOffsetBottom) {
$('#Fixed').css('bottom', $(window).height() - (referFooter.offset().top - $(window).scrollTop()))
} else {
$('#Fixed').css('bottom', e.data.fixedOffsetBottom)
}
}
});
$('#goTop').click(function() {
$('body,html').stop().animate({
'scrollTop': 0,
'duration': 100,
'easing': 'ease-in'
})
});
});
/*置顶功能 end*/
本文由职坐标整理并发布,了解更多内容,请关注职坐标WEB前端jQuery频道!
喜欢 | 0
不喜欢 | 0
您输入的评论内容中包含违禁敏感词
我知道了

请输入正确的手机号码
请输入正确的验证码
您今天的短信下发次数太多了,明天再试试吧!
我们会在第一时间安排职业规划师联系您!
您也可以联系我们的职业规划师咨询:
版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
沪公网安备 31011502005948号