当页面比较长时,如果滚动到一定位置想回到顶部会比较麻烦,所以页面上会适时的出现“回到顶部”按钮,以显示图片为例。 代码如下:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div{
height: 1500px;
width: 100%;
}
img{
position: fixed;
right: 20px;
bottom: 50px;
cursor: pointer;
}
</style>
<script type="text/javascript" src="jquery-1.11.1.min.js"></script>
</head>
<body>
<div></div>
<img src="ad-01.jpg">
</body>
<script type="text/javascript">
$("img").hide();
$(window).scroll(function(){
if($(window).scrollTop()>150){
$("img").fadeIn();
}else{
$("img").fadeOut();
}
})
$("img").click(function(){
$("html,body").animate({scrollTop:0},400);
})
</script>
</html>
这个中间使用了jQuery,版本是jquery-1.11.1.min.js,其他版本不确定是不是都可以,可以试试。
|