来自Lim Chee Un的帖子: http://davidwalsh.name/mootools-onload-smoothscroll
window.addEvent(‘domready’, function() {
new SmoothScroll({ duration:700 }, window);
var el = window.location.hash.substring(1); // the hash
if(el) {
window.scrollTo(0,0);
var scroll = new Fx.Scroll(window, { wait: false, duration: 700, transition: Fx.Transitions.Quad.easeInOut });
scroll.toElement(el);
}
});
我想让页面在页面加载时自动平滑滚动到URL中的#。
当链接如下链接时,平滑滚动工作,即同一页面:
<a href="#pageHeading">Books & Booklets</a>
而不是像我这样需要它:
<a href="books.html#pageHeading">Books & Booklets</a>
有人可以解释为什么这不起作用吗?
由于