jquery 回到頂部 回到底部

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

   <title></title>

   <script src="jquery-1.7.1.min.js"></script>

   <style type="text/css">

       body {

       font-size:12px;

       }

       #scroll {

       position:fixed; top:300px; right:100px;

       }


       .scrollItem {

       width:20px; height:70px;border:#e1e1e1 1px solid; cursor:pointer; text-align:center; padding-top:10px;

       }

   </style>

   <script type="text/javascript">

       $(function () {

           var speed = 1000;//滾動速度


           //回到頂部

           $("#toTop").click(function () {

               $("body").animate({ "scrollTop": 0 }, speed);

           });

           //回到底部

           var windowHeight = parseInt($("body").css("height"));//整個頁面的高度

           $("#toBottom").click(function () {

               $("body").animate({ "scrollTop": windowHeight }, speed);

           });



       });

   </script>


</head>

<body>

   <div style="height:1000px;"></div>

   <p id="liuyan">這裏是留言位置,回到這兒來額</p>

   <div style="height:1000px;"></div>

   <div id="scroll">

       <div class="scrollItem" id="toTop">回到頂部</div>

       <div class="scrollItem" id="toBottom">回到頂部</div>

   </div>

</body>

</html>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章