jQuery.noConflict(); jQuery(document).ready(function(){ function playSound() { var sound = new Audio('https://www.grinkom.info/vuskakivanie/click.mp3'); sound.play(); } if(jQuery.cookie('usertime') == null) { jQuery.cookie('usertime','1738213899'); jQuery.cookie('sleep','15'); // 15 секунд } var hide = jQuery.cookie('hide') jQuery(".invite-button-no").click(function(){ jQuery(".invite").animate({right:-200, opacity:"hide"}, 800); jQuery.cookie('hide',1); window.location.href = "https://www.grinkom.info/contact.html"; //Редирект на страницу контактов }); jQuery(".invite-button-yes, .invite-close").click(function(){ if(hide == null) { jQuery(".invite").animate({right:-200, opacity:"hide"}, 800); jQuery.cookie('usertime','1738213899'); jQuery.cookie('sleep','780'); // 3 минуты (60*3) jQuery.cookie('hide',0); }else{ jQuery(".invite").animate({right:-200, opacity:"hide"}, 800); jQuery.cookie('usertime','1738213899'); jQuery.cookie('sleep','780'); // 3 минуты (60*3) jQuery.cookie('hide',0); } }); var usertime = jQuery.cookie('usertime') var sleep = jQuery.cookie('sleep'); var time = parseInt(usertime)+parseInt(sleep); var timenow = 1738213899; var timeout = time-timenow; if(isNaN(timeout) || timeout <= 0) { var timeout = 0; } if(hide != 1) { setTimeout(function(){ playSound(); jQuery(".invite").animate({right:20, opacity:"show"}, 800); }, timeout*1000); } if (!navigator.cookieEnabled) alert("Для полноценной работы этот веб-сайт использует файлы cookie."); });