我在网站上使用ScrollMagic有一个锚链接滚动功能,我试图沿y轴将scrollTo目标偏移100px,我对jquery很新,我不知道在哪里提出这种指示:
'scrollTop': $target.offset().top - 100
以下是我的工作代码(来自:https://github.com/janpaepke/ScrollMagic/wiki/Tutorial-:-Anchor-Navigation):
$(document).ready(function() {
// Init controller
var controller = new ScrollMagic.Controller();
// Change behavior of controller
// to animate scroll instead of jump
controller.scrollTo(function(target) {
TweenMax.to(window, 2, {
scrollTo : {
y : target, // scroll position of the target along y axis
autoKill : true, // allows user to kill scroll action smoothly
},
ease : Cubic.easeInOut
});
});
// Bind scroll to anchor links
$(document).on("click", "a[href^=#]", function(e) {
var id = $(this).attr("href");
if($(id).length > 0) {
e.preventDefault();
// trigger scroll
controller.scrollTo(id);
// If supported by the browser we can also update the URL
if (window.history && window.history.pushState) {
history.pushState("", document.title, id);
}
};
});
});
任何指针都非常感激。 感谢
答案 0 :(得分:0)
哦,我亲爱的。
经过多次不必要的修补和修改后,答案变得比我想象的要简单得多
只需将y : target
替换为y : target-100
是的,我是个白痴。