개발자의 끄적끄적

[javascript/jquery] jquery swiper afterInit event example / jquery swiper 로드 완료 시점 체크 방법 본문

개발/javascript & jquery

[javascript/jquery] jquery swiper afterInit event example / jquery swiper 로드 완료 시점 체크 방법

효벨 2021. 12. 17. 01:00
728x90
반응형

[javascript/jquery] jquery swiper afterInit event example / jquery swiper 로드 완료 시점 체크 방법

 

 

jquery swiper 를 사용하다보면

 

swiper 가 정상적으로 로드가 되었는지 확인해서

 

로드된 후에 특정 액션을 취해야 하는 경우

 

종종 있습니다.

 

그럴때는 아래와 같이 afterInit 이벤트를 등록하시면 됩니다.

 

var swiper = new Swiper(".slider", {
    on: {
        afterInit: function(){
            // to do
        },
    },
});

 

afterInit 함수 안에

 

원하는 액션을 구현하시면

 

swiper 가 정상로드된 후에

 

해당 액션이 동작하게 됩니다!

 

참고들 하세요!

반응형
Comments