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

使用JS实现页面内跳转的两种方式

时间:2015-03-14 12:29:07      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:jquery   动画   js   

第一种方式是直接使用锚点配合链接标签:


<h2 id="h2-anchor">Scroll to here</h2>

<a href="#h2-anchor">Jump to H2</a>

现在大多数实现都采用该种方式。但是这种方式没有动画效果,跳转是直接发生的。


第二种方式使用jQuery中的animate方法实现:


var target= $('#h2-anchor').offset().top;

$('body').animate({scrollTop:target}, 300);

这种方式跳转的过程更自然。

使用JS实现页面内跳转的两种方式

标签:jquery   动画   js   

原文地址:http://blog.csdn.net/dm_vincent/article/details/44258243

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