Language

HTML + CSS/JQuery

JQuery - 팝업창 나오게 하기

초코렛맛 2024. 7. 10. 11:21



■ 팝업창 나오게 하기

<style>
    header{
        height: 400px;
        background-color: blueviolet;
    }
    main{
        height: 800px;
        background-color: aqua;
    }
    footer{
        height: 200px;
        background-color: blueviolet;
    }

    .botton{
        width: 200px;
        height: 50px;
        background-color: red;
        align-content: center;
        text-align: center;
    }
    .wrap{
        position: relative;
    }
    .pop{
        width: 300px;
        height: 200px;
        background-color: blue;
        position: fixed;
        transform: translate(-50%,-50%);
        left: 50%;
        top: 50%;
        display: none;
    }

</style>

<body>
    <div class="wrap">
        <header>

        </header>    
        <main>

            <div class="botton">버튼</div>
        </main>
        <footer>

        </footer>
        <div class="pop">
            공지사항<br>
            안녕<br>
            안녕<br>
            <a href="#" class="close">닫기</a>
        </div>
    </div>
    


    <script>
        $(".botton").click(
            function(){
                $(".pop").toggle();
            }
        );
        $(".close").click(
            function(){
                $(".pop").hide();    
            }
        );
    </script>
</body>

 

 

 

'HTML + CSS > JQuery' 카테고리의 다른 글

JQuery - 이미지 슬라이드 효과  (0) 2024.07.10
JQuery - 이미지 페이드 인 아웃  (0) 2024.07.10
JQuery - 메뉴바 나오게 하기  (0) 2024.07.10
JQuery - 이미지 트렌지션  (0) 2024.07.10
JQuery 함수 기본  (0) 2024.06.19