我试图导航到部分。我希望每次点击固定链接/页面滚动到下一部分。但它不能很好地工作。我只能导航到第一部分。怎么了 ?
jQuery.fn.extend({
scrollTo : function(speed, easing) {
var targetOffset = $(this).offset().top;
$('html,body').animate({scrollTop: targetOffset}, speed, easing);
}
});
$('.btn-red').click(function(e){
//e.preventDefault();
$('section').next().scrollTo(400, 'linear');
});