我有一个包含5个页面的网站,每个页面是一个不同的整页页面。 在首页中,我在没有动画的部分之间移动
$('.silentMoveTo05').on( "click", function(e) {
e.preventDefault();
fullpage_api.silentMoveTo(5);
});
但是如果我从其他页面调用主页
<a href="http://example.com/home/#5">link to slide 5</a>
滚动带有动画
答案 0 :(得分:0)
您可以使用选项scrollingSpeed:0
,但这当然会导致在使用鼠标滚轮或触控板时出现问题。
我鼓励只使用no-animation
之类的类,然后使用JS调用silentMoveTo
方法:
<a href="http://example.com/home/#5" class="no-animation">Link here</a>
还有JS:
$('.no-animation').on( "click", function(e) {
e.preventDefault();
var anchor = $(this).attr('href').replace('#', '');
fullpage_api.silentMoveTo(anchor);
});