平滑滚动到任何ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了平滑滚动到任何ID相关的知识,希望对你有一定的参考价值。
Simply set the id in the content, and use a hash in the anchor to scroll to it.
$(function($) { $(".scroll a, .top-btn").click(function(event) { event.preventDefault(); scrollTop: $(this.hash).offset().top }, 500); }); });​ //usage <a href="#theContent">Scroll to content</a> <div id="theContent"> blah blah blah </div>
以上是关于平滑滚动到任何ID的主要内容,如果未能解决你的问题,请参考以下文章