ARBITER.init('LOGIN_FOOTER', ['layerpopup.resp', 'ajax'], function(dom, arbi) { var publicObj, view; /** * ¿ÜºÎ¿¡¼­ ÂüÁ¶ ÇØ¾ß ÇÒ ÇÔ¼ö°¡ ÀÖ´Â °æ¿ì ÀÌ°÷¿¡ Á¤ÀÇ ÇϽʽÿÀ. * ex) arbi.get('MEMBER_LISTS').test(); */ publicObj = { }; function initialize() { initView(); attachEventHandler(); } function initView() { //¹é±×¶ó¿îµå ¾Ö´Ï¸ÞÀÌ¼Ç $(document).mousemove(function (e) { const mouseX = e.pageX / $(window).width() * 80; const mouseY = e.pageY / $(window).height() * 80; $('.wrap > .bg img:nth-child(1)').css({ 'left': 'calc(50% - 140px + ' + mouseX * 1.1 + 'px)', 'top': 'calc(50% - 140px + ' + mouseY * 1.1 + 'px)', }); $('.wrap > .bg img:nth-child(2)').css({ 'left': 'calc(50% - 140px + ' + mouseX * 0.5 + 'px)', 'top': 'calc(50% - 140px + ' + mouseY * 0.5 + 'px)', }); $('.wrap > .bg img:nth-child(3)').css({ 'left': 'calc(50% - 140px + ' + mouseX * 0.2 + 'px)', 'top': 'calc(50% - 140px + ' + mouseY * 0.2 + 'px)', }); }); } function attachEventHandler() { // °³ÀÎÁ¤º¸ Ãë±Þ¹æħ $('#oFooterBtnPrivacy').on("click", function() { arbi.layerpopup.resp({ opacity : 1, modalColor : 'rgba(44, 45, 68, 0.6)', closeClass : 'close', fadeSpeed : 0, closeBtn : false, popClass : 'policy', loadUrl :'/Etc/privacy/popPrivacy', onClose : function() {} }); return false; }); // ¿ø°Ý $('#oFooterBtnRemote').on("click", function() { window.open('https://988.co.kr', 'remote' ,'scrollbars=no,resizable=yes,width=1000,height=740,top=50'); return false; }); } // ÃʱâÈ­ ÇÔ¼ö ½ÇÇà initialize(); return publicObj; });