var s3LP = { init: function(options) { var self = this; if (options){ this.is_cms = options.is_cms ? true : false; } this.initForms(); lp_init($('body')); self.popupForm(); if (s3LP.page_blocking) { self.pageBlocking(); } if ($('body').find('._lp-image-container').length) { if (!window.hasOwnProperty('img_convert_cache')) { window.img_convert_cache = {}; } var debounce = (function () { return function (fn, time) { var timer, func; func = function() { var args = [].slice.call(arguments, 0); window.clearTimeout(timer); timer = window.setTimeout(function () { window.requestAnimationFrame && window.requestAnimationFrame(function() { fn.apply(null, args); }) || fn.apply(null, args); }, time) }; return func; } }()); self.convertImages($('body')); $(window).on('resize', debounce(function() { self.convertImages($('body')); }, 200)); } }, pageBlocking: function() { $('html, body').css({ 'overflow': 'hidden', 'height': '100%' }); $('
', { 'class' : 'page-blocked' }).appendTo($('body')); $('.page-blocked').css({ 'background': 'rgba(0,0,0,.8)', 'position': 'absolute', 'left': 0, 'right': 0, 'bottom': 0, 'top': 0, 'z-index': 100000, 'color': '#fff', 'font-size': '28px', 'display': 'flex', 'align-items': 'center', 'flex-direction': 'column', 'padding': '10px', 'text-align': 'center', 'line-height':'1.5', 'align-items': 'center', 'justify-content': 'center' }).append('Страница заблокирована