我找到了 Mary Lou 的代码http://tympanus.net/codrops/2010/06/02/smooth-vertical-or-horizontal -page-scrolling-with-jquery 我尝试在 5 秒后自动添加动画。不幸的是,无济于事。
我可以寻求帮助,并添加这些行。我不是程序员,我真的不知道还有什么奇怪的技巧。
$(function() {
$('ul.nav a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollLeft: $($anchor.attr('href')).offset().left
}, 1000);
event.preventDefault();
});
});
THX 德德