jQuery实现的返回顶部功能
<title>jQuery实现的返回顶部功能</title>
<style>
body {height:2000px;}
#gotoTop{
display:none;
position:fixed;
top:75%;
left:50%;
cursor:pointer;
margin-top:-50px;
margin-left:520px;
width: 64px;
height:64px;
line-height: 100;
overflow: hidden;
background: url(/uploads/allimg/140902/1_1111215171.png) no-repeat;
}
#gotoTop{
_position:absolute;
_top:expression_r(documentElement.scrollTop + documentElement.clientHeight * 3/4 + "px");
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
var min_height = 500;
$(function(){
$(window).scroll(function(){
//当窗口的滚动条的垂直位置大于页面的最小高度时,让返回顶部元素渐现,否则渐隐
if($(window).scrollTop() > min_height){
$("#gotoTop").fadeIn(100);
}else{
$("#gotoTop").fadeOut(200);
}
});
$("#gotoTop").click(function(){
$('html,body').animate({scrollTop:0},200);
});
});
</script>
<p>将滚动条拖到底部</p>
<div id="gotoTop" class="hover">返回顶部</div>
相关文章
- 很棒的网站底部导航条效果
很棒的网站底部导航条效果,访客输入咨询信息点击发送按钮时可以向商务通传递访客输入的信息。 打包下载: 很棒的网站底部导航条效果 效果截图:
- jQuery日期选择器插件jquery.date_input.js
官网: http://jonathanleighton.com/projects/date-input/ 下载: http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js http://github.com/jonleighton/date_input/raw/master/jquery.date_input.js http://github.com/jonleighton/date_inpu
- jQuery火箭上升回到顶部效果
jQuery火箭上升回到顶部效果,jQuery模拟火箭升空的效果使网页回到顶部,效果逼真。 代码打包下载: jQuery火箭上升回到顶部效果 效果截图:
- jquery.md5.js下载
jquery.md5.js下载 使用方法 复制代码 代码如下: script type=text/javascript src=jquery.min.js/script script type=jquery.md5.js/script script type=text/javascript alert($.md5(test)); /script 点击下载 官网:https://github.com/placemarker/jQuery
- jquery折叠效果
jquery折叠效果,图片折叠收缩,效果非常棒! 代码打包下载: jquery折叠效果 效果图:
随机推荐
- 很棒的网站底部导航条效果
很棒的网站底部导航条效果,访客输入咨询信息点击发送按钮时可以向商务通传递访客输入的信息。 打包下载: 很棒的网站底部导航条效果 效果截图:
- jQuery日期选择器插件jquery.date_input.js
官网: http://jonathanleighton.com/projects/date-input/ 下载: http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js http://github.com/jonleighton/date_input/raw/master/jquery.date_input.js http://github.com/jonleighton/date_inpu
- jQuery火箭上升回到顶部效果
jQuery火箭上升回到顶部效果,jQuery模拟火箭升空的效果使网页回到顶部,效果逼真。 代码打包下载: jQuery火箭上升回到顶部效果 效果截图:
- jquery.md5.js下载
jquery.md5.js下载 使用方法 复制代码 代码如下: script type=text/javascript src=jquery.min.js/script script type=jquery.md5.js/script script type=text/javascript alert($.md5(test)); /script 点击下载 官网:https://github.com/placemarker/jQuery
- jquery折叠效果
jquery折叠效果,图片折叠收缩,效果非常棒! 代码打包下载: jquery折叠效果 效果图: