'use strict'; /* ÁÖÀÇ : ÇöÀç urlÀº 'µµ¸ÞÀÎ µÚ¿¡ default »ç¿ë¾ÈÇÔ (ÇÁ·¹ÀÓ»ç¿ë)' ÀÌ¿Í °°Àº ¼³Á¤À¸·Î, location.href·Î Äڵ忡¼­ ·Î±×¸¦ ÂïÀ¸¸é (ºê¶ó¿ìÀú¿¡¼­ ÄÜ¼Ö·Î±× º¸¿©Áö´Â °Í°ú ´Ù¸§) urlµÚ¿¡ ÇÁ·¹ÀÓ ¾º¿ì±â Àü url·Î º¸¿©Áü (¿¹, /default/index.php) parent.location.href·Î Çϸé url ÀûÀº ÁÖ¼Ò¸¸ º¸¿©Áü. */ // console.log(parent.location.href); if(parent.location.href.indexOf('/default') !== -1) { window.location.replace('/'); } window.addEventListener('DOMContentLoaded', function() { var matchMediaPc = window.matchMedia("(min-width:600px)"); if(matchMediaPc.matches) { window.addEventListener('scroll', function() { if(document.documentElement.scrollTop > 300) { document.getElementsByClassName('right-fix-menu')[0].className = "right-fix-menu is-fixed"; } else { document.getElementsByClassName('right-fix-menu')[0].className = "right-fix-menu"; } }); var _loop = function _loop(i) { document.querySelectorAll('.main-product-list--pc > li')[i].addEventListener('mouseenter', function () { document.querySelectorAll('.main-product-list--pc > li')[i].querySelector('.main-product-list__head').style.display = 'none'; document.querySelectorAll('.main-product-list--pc > li')[i].querySelector('.main-product-show-box').className = 'main-product-show-box is-show'; }); document.querySelectorAll('.main-product-list--pc > li')[i].addEventListener('mouseleave', function () { document.querySelectorAll('.main-product-list--pc > li')[i].querySelector('.main-product-list__head').style.display = 'block'; document.querySelectorAll('.main-product-list--pc > li')[i].querySelector('.main-product-show-box').className = 'main-product-show-box'; }); }; for (var i = 0; i < document.querySelectorAll('.main-product-list--pc > li').length; i += 1) { _loop(i); } } });