$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash;
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
我使用上面的脚本来显示平滑的视差滚动。它工作正常,部分在屏幕开始时停止。我希望特定部分停止屏幕下方的某些像素。任何人都可以帮忙。