// ### index.js ### // °øÅë¿ä¼Ò¸¦ Á¦¿ÜÇÑ ¸ÞÀÎÆäÀÌÁöÀÇ µ¿ÀÛÀ» ±¸ÇöÇÕ´Ï´Ù. // -------- ¹ÝÀÀÇü µå·Ó´Ù¿î ¸Þ´º -------- // #### ÇöÀç »ç¿ëµÇ´ÂÁö ¾Ë ¼ö ¾ø½À´Ï´Ù. #### const $dropdown = $(".dropdown"); const $dropdownToggle = $(".dropdown-toggle"); const $dropdownMenu = $(".dropdown-menu"); const showClass = "show"; $(window).on("load resize", function() { if (this.matchMedia("(min-width: 992px)").matches) { $dropdown.hover( function() { const $this = $(this); $this.addClass(showClass); $this.find($dropdownToggle).attr("aria-expanded", "true"); $this.find($dropdownMenu).addClass(showClass); }, function() { const $this = $(this); $this.removeClass(showClass); $this.find($dropdownToggle).attr("aria-expanded", "false"); $this.find($dropdownMenu).removeClass(showClass); } ); } else { $dropdown.off("mouseenter mouseleave"); } }); // -------- ¹ÝÀÀÇü µå·Ó´Ù¿î ¸Þ´º -------- // -------- Facts counter (counterup.min.js) -------- // ¾÷ Ä«¿îÆà ¾Ö´Ï¸ÞÀ̼ÇÀ» °ü¸®ÇÕ´Ï´Ù. $('[data-toggle="counter-up"]').counterUp({ delay: 1, time: 100 }); // -------- Facts counter (counterup.min.js) --------