galleryBox.run('.box-gallery');
이 자바스크립트 함수를 0.1초 후에 다시 실행되게 하고 싶어요.
|
답변 1개
채택된 답변
+20 포인트
setTimeout(function() {
galleryBox.run('.box-gallery');
}, 100);
답변을 작성하려면 로그인이 필요합니다.