// ### popup.js ### // Æ˾÷ÀÇ µ¿ÀÛÀ» ±¸ÇöÇÕ´Ï´Ù. // ------------ POPUP ------------ // Æ˾÷ÀÌ ¸ðµÎ ´ÝÇû´ÂÁö È®ÀÎÇÕ´Ï´Ù. function checkAllPopupsClosed() { var activePopups = $(".popup.on").length; return (activePopups === 0); } // Æ˾÷ÀÇ ·¹À̾ƿô°ú ¹öÆ°ÀÇ ±â´ÉÀ» °ü¸®ÇÕ´Ï´Ù. var toggleMainPopup = function() { var handleStorage = { // setStorage - '¿À´Ã ÇÏ·ç º¸Áö ¾Ê±â' ¹öÆ°À» Ŭ¸¯Çϸé // ·ÎÄà ½ºÅ丮Áö¿¡ ÇöÀç ¿äÀÏÀ» ÀúÀåÇÕ´Ï´Ù. setStorage: function (name) { var now = new Date(); now = now.getDay(); // date = date.setTime(date.getTime() + exp * 10 * 1000); localStorage.setItem(name, now); }, // getStorage - ·ÎÄÿ¡ ÀúÀåµÈ ¿äÀÏÀ» ºÒ·¯¿É´Ï´Ù. getStorage: function (name) { var yesterday = parseInt(localStorage.getItem(name)); var then_now = new Date(); then_now = then_now.getDay(); return (yesterday == then_now); } }; // ÇöÀç ÀúÀåµÈ ³¯Â¥¿Í ¿À´Ã ³¯Â¥Á¤º¸°¡ °°´Ù¸é, // Æ˾÷âÀ» Áö¿ó´Ï´Ù. // ¸¸¾à ³¯Â¥Á¤º¸¸¦ È®ÀÎÇÒ ¼ö ¾ø°Å³ª °°Áö ¾Ê´Ù¸é, // 300ms ÀÌÈÄ¿¡ Æ˾÷âÀ» ¶ç¿ó´Ï´Ù. if ((handleStorage.getStorage("today"))) { $(".popup").removeClass("on"); } else { setTimeout(function () { $(".popup").addClass("on"); if(!checkAllPopupsClosed()) { $(".blackall").addClass("on"); } }, 300); } // ¿À´Ã ÇÏ·ç º¸Áö ¾Ê±â ¹öÆ° $(".popup").on("click", ".btn_close24", function () { handleStorage.setStorage("today"); $(this).parents(".popup.on").removeClass("on"); if (checkAllPopupsClosed()) { $(".blackall.on").removeClass("on"); } }); // ´Ý±â ¹öÆ° $(".popup").on("click", ".close", function () { $(this).parents(".popup.on").removeClass("on"); if (checkAllPopupsClosed()) { $(".blackall.on").removeClass("on"); } }); } const popSlider = new Swiper(".popSwiper", { slidesPerView: 1, spaceBetween: 0, }); $(function() { toggleMainPopup(); }); // ------------ POPUP ------------