본문 바로가기

대돌이의 하루/PUBLISHING

네비게이션 드로어, css 반응형 햄버거메뉴

  .m-nav-draw {
	position: fixed;
    width: 80%;
    top: 0;
    left: -100%;
    }


$(".m-header__btn").click(function() {
  console.log(1);
  $(".bgblack-layerpopup").show();
  $(".m-nav-draw").animate({
    marginLeft: "100%"
  });
});