Speed :1
New Score :0
High Score :0
New Score :0
High Score :0
Run Best
NICE BUSINESS TYPE INDICATOR
3. 급전을 친구에게 빌렸는데 오늘이 돈을 주기로 한날.. 그런데 카드값을 내야하는 날도 오늘인데... 이걸 어쩌나...
4. 우리 회사는 중요한 의사 결정을 할때?
5. 열심히 일한 나를 위한 선물을 주고싶다. 어떤게 좋을까?
6. 은행에서 투자상품을 추천받았다. 어떤걸 가입하지?
7. 회사에서의 나는?
8. 꿈에서 깨어나니 20년 전으로 돌아갔다. 당신이 제일 먼저 하는일은?
9. 내가 인사 담당자라면 신규 입사자 채용 시 제일 중요하게 보는것은?
10. 회사에 정말 싫어하는 동료가 있다면?
11. 가난한 집의 가장이 되었다.. 자녀의 생일 날 선물은?
12. 평소 회사 출근 스타일은?
13.회사 체육대회 하는 날이다. 오늘 뭐하지?
14. 나의 업무 스타일은?
@charset "utf-8";
@font-face {
font-family: ngttf;
src: url(NanumGothic.ttf);
}
@font-face {
font-family: ngeot;
src: url(NanumGothic.eot);
}
* {
margin: 0;
padding: 0;
font-family: ngeot, ngttf, Nanumgothic;
}
html,
body {
_height: 100%;
font-family: ngttf, ngeot;
}
img,
fieldset {
border: 0;
}
form,
fieldset {
margin: 0;
padding: 0;
}
em,
address {
font-style: normal;
}
button {
margin: 0;
padding: 0;
overflow: visible;
cursor: pointer;
}
a {
text-decoration: none;
}
a:hover,
a:active,
a:focus {
text-decoration: underline;
}
table {
table-layout: fixed;
border-collapse: collapse;
}
/* Button Common */
.button,
.button * {
position: relative;
margin: 0;
padding: 0;
display: inline-block;
text-decoration: none !important;
border: 0;
font-size: 12px;
white-space: nowrap;
background: url(button.gif) no-repeat;
vertical-align: top;
overflow: visible;
color: #333;
}
.button {
margin-right: 4px;
}
.button * {
left: 4px;
cursor: pointer;
_cursor: hand;
}
.button.medium,
.button.medium * {
height: 24px;
line-height: 21px;
}
/* 맑은고딕을 사용할 경우 21px, 돋움을 사용할 경우 24px 사용 */
.button.medium {
background-position: left 0;
}
.button.medium * {
padding: 0 10px 0 6px;
font-size: 12px;
background-position: right top;
}
/* Button Hover */
.button *:hover,
.button *:active,
.button *:focus {
color: #06a;
}
/* Button Icon Variation */
.button.icon * {
padding-left: 20px;
}
.button.icon span {
width: 20px;
margin-right: -20px;
padding: 0 !important;
}
.button.medium .check {
background-position: 4px -150px;
}
.button.medium .add {
background-position: -16px -150px;
}
.button.medium .delete {
background-position: -34px -150px;
}
.button.medium .calendar {
background-position: -56px -150px;
}
.button.medium .refresh {
background-position: -76px -150px;
}
.button.medium .download {
background-position: -96px -151px;
}
/* Common Class */
.iText {
border: 1px solid #b7b7b7;
border-right-color: #e1e1e1;
border-bottom-color: #e1e1e1;
background: transparent;
}
.iCheck,
.iRadio {
width: 13px;
height: 13px;
margin: 0;
padding: 0;
vertical-align: middle;
}
.hide {
position: absolute;
left: 0;
top: 0;
width: 1px;
height: 1px;
font-size: 0;
line-height: 0;
visibility: hidden;
}
/* Popup Layer */
.layer {
display: none;
position: fixed;
_position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
}
.open {
display: block;
}
.layer .bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .5;
filter: alpha(opacity=50);
}
.layer_area {
position: absolute;
left: 50%;
top: 50%;
background: #fff;
padding: 20px;
border: 4px solid #ddd;
}
jQuery(function($){
function layer_open(el){
//$('.layer').addClass('open');
$('.layer').fadeIn();
var temp = $('#' + el);
if (temp.outerHeight() < $(document).height() ) temp.css('margin-top', '-'+temp.outerHeight()/2+'px');
else temp.css('top', '0px');
if (temp.outerWidth() < $(document).width() ) temp.css('margin-left', '-'+temp.outerWidth()/2+'px');
else temp.css('left', '0px');
}
$('#layer_open').click(function(){
layer_open('layer1'); /* 열고자 하는 것의 아이디를 입력 */
return false;
});
$('.layer .bg').click(function(){
$('.layer').fadeOut();
});
$('#layer_close').click(function(){
$('.layer').fadeOut();
return false;
});
$(document).ready(function(){ });
});
<div style="margin:30px;"><span class="button medium"><a href="#" id="layer_open">팝업창 열기</a></span></div>
<div class="layer">
<div class="bg"></div>
<div class="layer_area" id="layer1">
<p style="width:400px; text-align:justify; font-family:Malgun gothic;">이 것은 팝업창입니다.</p>
<br /> <span class="button medium"><a href="#" id="layer_close">팝업창 닫기</a></span>
</div>
</div>
728x90
반응형