1. 程式人生 > >使用jQuery實現瀏覽器滾動條返回頂部功能

使用jQuery實現瀏覽器滾動條返回頂部功能

<!DOCTYPE html>
<html ng-app="app">
<head>

  <meta charset="utf-8"/>
  <title ng-bind="title">使用jQuery實現返回頂部功能</title>
  <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
  <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>

  <style>
    body,html{height:100%}
    footer,header{flex:1}
    header.navbar-top{text-align: center;height:30px!important;min-height:40px;background:#205081;color:#fff;font-size:14px!important;line-height:40px;z-index:9999}
    header.navbar-top a{color: #fff;}
    .example{height: 1800px;width: 500px;background-color: pink;margin:auto;margin-top: 40px;}

    .margin-lg{margin:250px 0}
    .fixed-tools{position:fixed;right:40px;bottom:100px;z-index:1000;text-align:center}
    .fixed-tools i{margin:0!important;font-size:22px;line-height:1}
    .fixed-tools li.item{margin-bottom:10px!important}
    .fixed-tools li a{padding:13px 12px!important;width:46px;height:46px;border-radius:50%!important;background:#f1f1f1}
    .fixed-tools li a:hover{background-color:#7cc923!important;color:#fff!important}
    .fixed-tools li a:hover i{color:#fff!important}
    .hover-fixed{position:absolute;top:0;right:100%;display:none;width:150px;height:100%;background-color:#7cc923;color:#fff}
    .hover-gototop{position:absolute;right:0;bottom:-46px;display:none;background:#f1f1f1}

  </style>
  <script>
    $(function(){
        // 為視窗的scroll事件繫結處理函式
      $(window).scroll(function() {
        // 獲取視窗的滾動條的垂直位置
        var s = $(window).scrollTop();
        // 當視窗的滾動條的垂直位置大於頁面的最小高度時,讓返回頂部元素漸現,否則漸隱
        if (s > 300) {
          $(".hover-gototop").fadeIn(100);
        } else {
          $(".hover-gototop").fadeOut(200);
        };
      });

      // 點選返回頂部,也可返回指定位置
      $(".hover-gototop").on('click', function() {
        $('html,body').animate({
          scrollTop: 0
        }, 700);
      });
    })
  </script>
</head>
<body>
<header class="navbar-top navbar-fixed-top">
  <a href="#">使用jQuery實現返回頂部功能</a>
</header>
<section class="example">
內容區
</section>
<ul class="nav fixed-tools">
  <li class="item">
    <a class="text-muted" title="聯絡方式">Tel</a>
  </li>
  <li>
    <div id="backTop">
      <a class="hover-gototop" title="返回頂部">↑</a>
    </div>
  </li>
</ul>
</body>
</html>