jQuery平滑滚动到#锚定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery平滑滚动到#锚定相关的知识,希望对你有一定的参考价值。
adapted from http://jquery14.com/day-05
// html: // <h1 id="anchor">Lorem Ipsum</h1> // <p><a href="#anchor" class="topLink">Back to Top</a></p> $(document).ready(function() { $("a.topLink").click(function() { $("html, body").animate({ scrollTop: $($(this).attr("href")).offset().top + "px" }, { duration: 500, easing: "swing" }); return false; }); });
以上是关于jQuery平滑滚动到#锚定的主要内容,如果未能解决你的问题,请参考以下文章