본문 바로가기

JQuery-js-css

[plugin] ScrollMagic 실행

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);
}
});

'JQuery-js-css' 카테고리의 다른 글

[Emby] Halloween 테마 css  (0) 2021.01.15
[javascript] 정규식 태그 및 내용 동시 제거  (0) 2020.12.09
javascript 개행, 공백제거 replace  (0) 2019.09.19
문자열 특수문자제거  (0) 2019.05.23
[css for IE] IE8,9 CSS핵  (0) 2019.03.20