| Server IP : 195.58.49.151 / Your IP : 216.73.217.39 Web Server : Apache/2.4.67 (Debian) mod_fcgid/2.3.9 OpenSSL/3.0.20 System : Linux hs.hsdns.ru 6.1.0-48-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.172-1 (2026-05-15) x86_64 User : antilam ( 1007) PHP Version : 8.4.22 Disable Function : system,passthru,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/antilam/web/antilam.ru/public_html/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);