| Server IP : 38.190.208.107 / Your IP : 216.73.217.38 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.4/wp-content/themes/woodmart/js/scripts/elements/ |
Upload File : |
/* global woodmart_settings */
(function($) {
$.each([
'frontend/element_ready/wd_image_hotspot.default',
], function(index, value) {
woodmartThemeModule.wdElementorAddAction(value, function() {
woodmartThemeModule.imageHotspot();
});
});
woodmartThemeModule.$document.on('wdShopPageInit', function() {
woodmartThemeModule.imageHotspot();
});
woodmartThemeModule.imageHotspot = function() {
$('.wd-image-hotspot, .wd-spot').each(function() {
var _this = $(this);
var btn = _this.find('.hotspot-btn, .wd-spot-icon');
var parentWrapper = _this.parents('.wd-spots');
if (!parentWrapper.hasClass('wd-event-click') && woodmartThemeModule.$window.width() > 1024) {
return;
}
btn.on('click', function() {
if (_this.hasClass('wd-opened')) {
_this.removeClass('wd-opened');
} else {
_this.addClass('wd-opened');
_this.siblings().removeClass('wd-opened');
}
setContentPosition();
woodmartThemeModule.$document.trigger('wood-images-loaded');
return false;
});
woodmartThemeModule.$document.on('click', function(e) {
var target = e.target;
if (_this.hasClass('wd-opened') && (!$(target).is('.wd-image-hotspot') || !$(target).is('.wd-spot')) && (!$(target).parents().is('.wd-image-hotspot') && !$(target).parents().is('.wd-spot'))) {
_this.removeClass('wd-opened');
return false;
}
});
});
//Image loaded
$('.wd-spots').each(function() {
var _this = $(this);
_this.imagesLoaded(function() {
_this.addClass('wd-loaded');
});
});
function setContentPosition() {
$('.wd-image-hotspot .hotspot-content, .wd-spot .wd-spot-dropdown').each(function() {
var content = $(this);
var isBlock = content.parents('.wp-block-wd-hotspot').length;
content.removeClass('hotspot-overflow-right hotspot-overflow-left');
content.attr('style', '');
var offsetLeft = content.offset().left;
var offsetRight = woodmartThemeModule.$window.width() - (offsetLeft + content.outerWidth());
if (woodmartThemeModule.windowWidth > 768 && !isBlock) {
if (offsetLeft <= 0) {
content.addClass('hotspot-overflow-right');
}
if (offsetRight <= 0) {
content.addClass('hotspot-overflow-left');
}
}
if (woodmartThemeModule.windowWidth <= 768 || isBlock && woodmartThemeModule.windowWidth <= 1024) {
if (offsetLeft <= 0) {
content.css('marginLeft', Math.abs(offsetLeft - 15) + 'px');
}
if (offsetRight <= 0) {
content.css('marginLeft', offsetRight - 15 + 'px');
}
}
});
}
};
$(document).ready(function() {
woodmartThemeModule.imageHotspot();
});
})(jQuery);