본문 바로가기

IT노트(구)/HTML/CSS

(html/css) 간단한 div 팝업 예제

div 팝업은 모던 웹을 개발하기 위한 필수 스킬이라고 할 수 있습니다.(새 창을 띄우는 것보다 훨씬 보기도 좋고!)

jQuery UI 등을 이용해서도 div 팝업을 만들 수 있지만

간단하면서도 강력한 형태의 div 팝업 소스를 소개합니다.(순수 자바스크립트와 css를 이용한 소스입니다!)

데모 보기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
    <title>LIGHTBOX EXAMPLE</title>
    <style>
    .black_overlay{
        display: none;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index:1001;
        -moz-opacity: 0.8;
        opacity:.80;
        filter: alpha(opacity=80);
    }
    .white_content {
        display: none;
        position: absolute;
        top: 25%;
        left: 25%;
        width: 50%;
        height: 50%;
        padding: 16px;
        border: 16px solid orange;
        background-color: white;
        z-index:1002;
        overflow: auto;
    }
</style>
</head>
<body>
    <p>This is the main content. To display a lightbox click
    <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">here</a></p>
    <div id="light" class="white_content">This is the lightbox content.
    <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a></div>
    <div id="fade" class="black_overlay"></div>
</body>
cs

출처 : http://stackoverflow.com/questions/19064987/html-css-popup-div-on-text-click