我有一个相当长的页面,里面有很多类元素。还有两个按钮:next
和prev
。
This script滚动到下一个元素对我来说很好:
$('.button').click(function() {
var target;
$("p").each(function(i, element) {
target = $(element).offset().top;
if (target - 10 > $(document).scrollTop()) {
return false; // break
}
});
$("html, body").animate({
scrollTop: target
}, 700);
});
有人能帮我解决prev
问题吗?
1条答案
按热度按时间bvhaajcl1#
这应该是工作: