$(function() {
$.fn.fullpage({
// 특정 인덱스일 때
'afterLoad': function (anchorLink, index) {
if (index == 1){
alert ('첫번째 인덱스');
}
},
// 페이지 이동할 때
'onLeave' : function (index, nextIndex, direction){
if (index == 3 && direction == 'down'){
alert ('3번에서 4번으로');
} else if (index == 3 && direction == 'up'){
alert ('3번에서 2번으로');
}
}
});
});
'jquery' 카테고리의 다른 글
bxslider.js 를 이용하여 tab menu 만들기 (0) | 2020.04.04 |
---|---|
anime.js를 이용한 text animation 만들기 (0) | 2020.04.04 |
[fullscreen.js] background fixed 배경 고정 (0) | 2020.04.04 |
[bxslider.js] 슬라이드 썸네일 thumbnail (0) | 2020.04.04 |
[bxsliderj.js] 반응형 width 설정하기 (0) | 2020.04.04 |
댓글