본문 바로가기
jquery

모바일 nav에서 html, body height 100%로 하기

by 바나냥 2020. 4. 6.
$(".h-menu .menu-open").on("click", function(){
        $("html, body").css({"height":"100%","overflow":"hidden"});
        $(this).hide();
        $(".h-menu .menu-close").show();
        $(".h-nav .nav-down").stop().show();
    });
    $(".h-menu .menu-close").on("click", function(){
        $("html, body").removeAttr('style');
        $(this).hide();
        $(".h-menu .menu-open").show();
        $(".h-nav .nav-down").stop().hide();
    });

댓글