0
我試圖在我的fullpage.js
中實現afterLoad和onLeave多個事件的不同部分。但只有最後一個似乎有效,這裏有什麼可能是錯誤的?fullpage.js多個onLeave和afterLoad事件
如果我刪除最後一個,但第一個很好。所以它看起來像我把它們以錯誤的方式結合起來,所以一個禁用另一個。
$('#fullpage').fullpage({
onLeave: function(index, nextIndex, direction) {
if (nextIndex == 3 || nextIndex == 1) {
$('.aboutme').hide("slide", {
direction: "left"
}, 200);
}
},
afterLoad: function(anchorLink, index) {
if (index == 2) {
$('.aboutme').show("slide", {
direction: "left"
}, 200);
}
},
onLeave: function(index, nextIndex, direction) {
if (nextIndex == 2) {
$('.titlea').hide("slide", {
direction: "right"
}, 200, function() {
$('.titleb').hide("slide", {
direction: "right"
}, 200);
});
}
},
afterLoad: function(anchorLink, index) {
if (index == 1) {
$('.titlea').show("slide", {
direction: "right"
}, 200, function() {
$('.titleb').show("slide", {
direction: "right"
}, 200);
});
}
}
});
更具體地講,什麼是多onLeave
和afterLoad
方法相結合的正確方法?
哦,我明白了,謝謝你,這是有效的。將在幾分鐘內接受。 –