
afterLoad: function(anchorLink,index)
화면이 전환되고 나서 실행 //화면이 전환되었는지 구분가능
.png)
만약 이것을 활용한다면
afterLoad: function (anchorLink, index) {
if (index == 3) {
alert("hi section 3");
}
}
코드를 입력하세요
%20%ED%99%9C%EC%9A%A9%EC%98%88%EC%8B%9C.png)
afterSlideLoad(anchorLink,index,slideAnchor,slideIndex)
슬라이드 화면이 전환되고 난 후에 이벤트 발생
afterSlideLoad: function (anchorLink, index, slideAnchor, slideIndex) {
console.log("현재 슬라이드 번호는?" + (+ slideIndex + 1));
}
.png)