首页 > 代码库 > jQuery类级别插件--返回顶部,底部,去到任何部位
jQuery类级别插件--返回顶部,底部,去到任何部位
先引入js:
<script type="text/javascript" src="http://www.mamicode.com/jquery.js" ></script>
<script type="text/javascript" src="http://www.mamicode.com/towhere.js" ></script>
假设页面:
<body> <a href="javascript:;" id="to-bottom">去到底部</a> <a href="javascript:;" id="to-top">返回顶部</a> <div id="to-where1">去到500处</div> <div id="to-where2">去到1000处</div> </body>
使用方法:
$(function(){ $(‘#to-bottom‘).click(function(){ $.toBottom(); }); $(‘#to-top‘).click(function(){ $.toTop(); }); $(‘#to-where1‘).click(function(){ $.toWhere(500); }); $(‘#to-where2‘).click(function(){ $.toWhere(1000); }); /* $.toBottom(); 去向底部,$.toBottom(0.1)--[0.1-可选参数-运动速度],默认0.3 $.toTop(); 返回顶部,调整同上 $.toWhere(); 到任何处,$.toWhere(500,0.1)--[500-必填到达何处,0.1--可选速度],默认0.3 */ });
插件下载:
http://pan.baidu.com/share/link?shareid=2575574326&uk=3945321701
jQuery类级别插件--返回顶部,底部,去到任何部位
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。