본문 바로가기 메뉴 바로가기

대표이미지

[plugin] ScrollMagic 실행

2021. 2. 17.
var scene = new ScrollMagic.Scene({
	triggerElement: ".dynamicContent #loading_img", triggerHook: "onEnter"
    }).addTo(controller).on("enter", function (e) {
    
    if (!$("#loading_img").hasClass("active")) {
      		$("#loading_img").addClass("active");
            if (console){
                  console.log("loading new items");
            }
            // simulate ajax call to add content using the function below
            setTimeout(getAjaxImageList, 1000, 9);
	}
});
댓글 갯수
TOP