🕹 스크립트

jquery 모바일 아코디언 메뉴 스크립트

(。θᗨθ。) 2023. 5. 11. 13:16
  const $btnMenu = $("#header .btn-menu");
  const $mobGNB = $("#header .mobGnb");
  const $lnbDep1 = $("#header .mobGnb .btn-dep1");
  const $lnb = $("#header .mobGnb .lnbList");

  $btnMenu.click(function () {
    $(this).toggleClass('on');
    $mobGNB.fadeToggle('on');
  });
  $lnbDep1.click(function () {
    $(this).parents('.gnb__list').toggleClass('on').siblings().removeClass('on');
    $(this).parents('.gnb__list').siblings().find($lnb).stop().slideUp(300);
    $(this).next($lnb).stop().slideToggle(300);
  });
728x90