在 Fullpage js 中向下滚动时打开外部 URL
Open External URL when scroll down in Fullpage js
我已经添加了三个带有整页 js 的水平幻灯片,但我想在向下滚动到最后一节时打开外部 URL。我添加了一个滚动功能,可以计算鼠标滚动及其在所有页面中的工作,但不包括在整页滑块页面上。
var lastScrollTop = 0;
$(window).scroll(function(){
var st = $(this).scrollTop();
if(st < lastScrollTop){
console.log('up 1');
}
else
{
console.log('down 1');
}
lastScrollTop = st;
});
除我添加整页 js 的页面外,所有页面上的值控制台
离开倒数第二页时可以使用onLeave回调
onLeave: function(origin, destination, direction){
if(destination.index == lastPage){
//open new Page
}
}
我已经添加了三个带有整页 js 的水平幻灯片,但我想在向下滚动到最后一节时打开外部 URL。我添加了一个滚动功能,可以计算鼠标滚动及其在所有页面中的工作,但不包括在整页滑块页面上。
var lastScrollTop = 0;
$(window).scroll(function(){
var st = $(this).scrollTop();
if(st < lastScrollTop){
console.log('up 1');
}
else
{
console.log('down 1');
}
lastScrollTop = st;
});
除我添加整页 js 的页面外,所有页面上的值控制台
离开倒数第二页时可以使用onLeave回调
onLeave: function(origin, destination, direction){
if(destination.index == lastPage){
//open new Page
}
}