Scrollmagic带有动画锚点导航的“ Section Wipe”?

时间:2018-09-12 12:25:03

标签: jquery html css anchor scrollmagic

将ScrollMagic的“ Section Wipe”功能添加到我正在处理的项目中。但是,一旦在导航选项卡中单击幻灯片,我就无法使其动画到特定部分。

这是我的尝试,虽然我可以使锚点导航在点击时跳转向下页面,但在向上导航时似乎不起作用 >页面。动画也无法正常工作。

$('header a').on('click',function() {
   var targetSection = $(this).attr('href').substring(1);
   var targetPerc = (targetSection-1) / ($('nav a').length-1);
   var targetPos = scene.scrollOffset() + (scene.duration()*targetPerc);
   controller.scrollTo(targetPos);
});

I have attached an example below with the issue:

0 个答案:

没有答案