Files
dnssash/theme/rd.laser/rb.custom/new_main_visual/module.js
T
2026-06-11 18:47:38 +09:00

20 lines
491 B
JavaScript

(function($) {
"use strict";
$(function() {
// 각 비주얼 모듈에 대해 개별적으로 Cycle2를 초기화합니다.
$('.new-main-visual').each(function() {
var $this = $(this);
var $slider = $this.find('.visual-slider');
// 이미 초기화되었다면 중복 실행 방지
if ($slider.data('cycle.opts')) {
return;
}
$slider.cycle();
});
});
})(jQuery);