码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 回到顶端

时间:2014-08-04 10:40:16      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   cti   ar   html   

<!doctype html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title></title>

</head>

 

<style>

body{height:2500px;}

.go_top{right:10px;bottom:10px;position:fixed;cursor:pointer;}

</style>

 

<body>

 

<input type="button" value="go_top" class="go_top">

 

</body>

 

</html>

<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>

 

<script>

 

 $(function(){

  //回到顶端按钮点击的时候

   $(‘.go_top‘).click(function(){

     //给 body html 绑定动画,设置滚动条距离为0 速度为300毫秒

     $(‘body,html‘).animate({scrollTop:0}, 300);

  

   })

 

 });

 

</script>

 

jQuery 回到顶端,布布扣,bubuko.com

jQuery 回到顶端

标签:style   http   color   os   io   cti   ar   html   

原文地址:http://www.cnblogs.com/zion0707/p/3889396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!