Files
idpan.poznan.pl/modules/mod_jt_contentslider/tmpl/assets/js/default.js
2026-02-08 21:16:11 +01:00

28 lines
897 B
JavaScript

JTCJ = jQuery.noConflict();
jQuery(document).ready(function () {
if (typeof(jtcModuleIds) != 'undefined') {
for (var i = 0; i < jtcModuleIds.length; i++) {
jQuery('#jtcontentslider' + jtcModuleIds[i]).css("direction", "ltr");
jQuery('#jtcontentslider' + jtcModuleIds[i]).fadeIn("fast");
if(btcModuleOpts[i].width=='auto'){
jQuery('#jtcontentslider' + jtcModuleIds[i] + ' .slide').width(jQuery('#jtcontentslider' + jtcModuleIds[i] + ' .slide').width());
}
JTCJ('#jtcontentslider' + jtcModuleIds[i]).slides(btcModuleOpts[i]);
if (jQuery("html").css("direction") == "rtl") {
jQuery('#jtcontentslider' + jtcModuleIds[i] + ' .slides_control').css("direction", "rtl");
}
}
}
jQuery('img.hovereffect').hover(function () {
jQuery(this).stop(true).animate({
opacity : 0.5
}, 300)
}, function () {
jQuery(this).animate({
opacity : 1
}, 300)
})
})