jQuery实现锚点向下平滑滚动特效示例

前端之家收集整理的这篇文章主要介绍了jQuery实现锚点向下平滑滚动特效示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_301_0@

实现效果


@H_301_0@


@H_3010@

实现原理:


@H
301_0@使用jQuery animate()方法实现页面平滑滚动特效


<div class="jb51code">
<pre class="brush:xhtml;">
$('html,body').animate({
scrollTop: $(hash).offset().top
},800,function(){
window.location.hash = hash;
});

@H_301_0@

简单实例代码

nofollow" style=" font-size: 30px; font-weight: bold; text-align: center; ">点击此处平滑滚动到第二部分
@H_301_0@以上这篇jQuery实现锚点向下平滑滚动特效示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

猜你在找的jQuery相关文章