jQuery 返回顶部效果

Posted 青青子衿。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 返回顶部效果相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>返回顶部</title>
    <script src="scripts/jquery-1.7.1.min.js"></script>
</head>
<body>
<script type="text/javascript"> 
$(function(){
var toppos = 0;
$(".back_top_index").hide();
$(document).scroll(
  function(){
    toppos=$(document).scrollTop();
    var oClient =$(window).height();//当前窗口可视区域高度
    if(toppos>oClient){
      $(".back_top_index").fadeIn();  
    }else if(toppos==0){
      $(".back_top_index").fadeOut(); 
    }
  }
)
$(".back_top_index").click(function(){
    $("html,body").animate({scrollTop:0})
  })
   
})
</script> 
<div style="height:2000px;">3423424</div>
<div class="back_top_index">1</div>
<style>
.back_top_index{width: 50px;height: 50px;position: fixed;bottom: 10px;right: 10px;background-color: red;}
</style>
</body>
</html>

 

以上是关于jQuery 返回顶部效果的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 返回顶部效果

jquery 如何实现回顶部 带滑动效果

怎样用js写返回顶部的滑动效果

jQuery返回顶部和在线客服网站侧边栏

人人必知的10个jQuery小技巧

Jquery 动画返回顶部