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
'IT노트(구) > HTML/CSS' 카테고리의 다른 글
(html/css) 마우스를 올렸을 때 커서가 손 모양으로 바뀌게 만들기 (0) | 2016.02.16 |
---|---|
css를 이용해서 uppercase, lowercase 등 구현하는 방법(대문자/소문자 치환) (0) | 2016.01.19 |
disabled와 readonly의 차이점 (0) | 2015.12.28 |
<meta charset="UTF-8" /> 태그를 사용해도 한글이 깨지는 경우 (0) | 2015.12.21 |
div 자체를 가운데 정렬 시키는 방법 (0) | 2015.12.14 |