【发布时间】:2015-08-28 18:59:51
【问题描述】:
我在使用 jQuery 并将动画包装在 hashchange 事件中时遇到问题。当事件被触发时,动画会立即发生。我需要它是光滑的。
jQuery( document ).ready(function() {
jQuery(window).on('hashchange', function() {
jQuery('body').animate({ scrollTop: jQuery(window.location.hash).offset().top}, 'slow');
});
});
如果我不在 hashchange 事件中包装动画,一切都很好......
【问题讨论】:
标签: javascript jquery jquery-animate hashchange