정필성

닫기 버튼 없이도 토글하면 사라지고, 다른영역 클릭시 사라지는 전체보기 메뉴

<style>
    #gnb_all{width:100%;height:30%; background:red; display:none; position:absolute; color:#fff; z-index:99999; text-align:center; margin:0px auto}
    .gnb_menu_btn{width:300px; margin:0 auto; cursor:pointer; text-align:center; padding:10px; border-radius:5px; border:solid 1px #ddd}
</style>

<div class="gnb_menu_btn">버튼을 누르세요</div>
<div id="gnb_all">something I want to show</div>

<script>//닫기 버튼 없이도 토글하면 사라지고, 다른영역 클릭시 사라지는 전체보기 메뉴
  $(document).ready(function(){
      $('.gnb_menu_btn').click(function(event){
          event.stopPropagation();
           $("#gnb_all").slideToggle("slow");
      });
      $("#gnb_all").on("click", function (event) {
          event.stopPropagation();
      });
  });
  $(document).on("click", function () {
      $("#gnb_all").hide();
  });
</script>

|

댓글 5개

이런게 팁게에 올라오니 너무 좋네요..
유용한 정보 감사합니다.
팁 감사합니다., 스크랩해놓고 사용할때 활용해봐야겠네요
훌륭합니다.
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
5년 전 조회 3,828
5년 전 조회 7,232
5년 전 조회 4,005
5년 전 조회 5,053
5년 전 조회 2.5만
5년 전 조회 3,488
6년 전 조회 3,919
6년 전 조회 3,683
6년 전 조회 4,436
6년 전 조회 3,299
6년 전 조회 4,385
6년 전 조회 4,564
6년 전 조회 3,428
6년 전 조회 4,248
6년 전 조회 6,946
6년 전 조회 5,123
6년 전 조회 3,631
6년 전 조회 6,581
6년 전 조회 3,248
6년 전 조회 4,872
6년 전 조회 5,232
6년 전 조회 5,225
6년 전 조회 4,187
6년 전 조회 3,554
6년 전 조회 4,366
6년 전 조회 1.7만
6년 전 조회 3,928
6년 전 조회 5,277
6년 전 조회 5,277
6년 전 조회 6,325