|
|
|
15년 전
|
조회 2,128
|
|
|
|
15년 전
|
조회 2,457
|
|
|
|
15년 전
|
조회 2,029
|
|
|
|
15년 전
|
조회 1,715
|
|
|
|
15년 전
|
조회 1,985
|
|
|
|
15년 전
|
조회 5,128
|
|
|
|
15년 전
|
조회 1,988
|
|
|
|
15년 전
|
조회 1,658
|
|
|
|
15년 전
|
조회 1,754
|
|
|
|
15년 전
|
조회 2,271
|
|
|
|
15년 전
|
조회 1,758
|
|
|
|
15년 전
|
조회 1,730
|
|
|
|
15년 전
|
조회 1,442
|
|
|
|
15년 전
|
조회 2,088
|
|
|
|
15년 전
|
조회 3,064
|
|
|
|
15년 전
|
조회 1,853
|
|
|
|
15년 전
|
조회 2,294
|
|
|
|
15년 전
|
조회 1,892
|
|
|
|
15년 전
|
조회 2,628
|
|
|
|
15년 전
|
조회 1,980
|
|
|
|
15년 전
|
조회 2,003
|
|
|
|
15년 전
|
조회 1,965
|
|
|
|
15년 전
|
조회 2,955
|
|
|
|
15년 전
|
조회 1,790
|
|
|
|
15년 전
|
조회 2,381
|
|
|
|
15년 전
|
조회 2,707
|
|
|
|
15년 전
|
조회 1,798
|
|
|
|
15년 전
|
조회 1,794
|
|
|
|
15년 전
|
조회 2,022
|
|
|
|
15년 전
|
조회 1,784
|
댓글 5개
<!--
var opt = 5;
var max = 80;
var min = 0;
var hd;
function fncShow( num )
{
var obj = document.getElementById('wall');
obj.style.filter = 'Alpha(Opacity='+opt+') revealTrans(transition=23,duration=0.5) blendTrans(duration=0.5)';
switch( num )
{
case 1 :
opt= opt-5;
if(opt<=min) obj.style.display = 'none';
else setTimeout('fncShow( 1 )',100);
obj.style.zIndex = '1';
break;
case 2 :
opt= opt+5;
obj.style.display = 'block';
if(opt<max) setTimeout('fncShow( 2 )',100);
obj.style.zIndex = '3';
break;
}
}
function fncClick()
{
var obj = document.getElementById('Pop');
obj.style.left = 150;
obj.style.top = 150;
setTimeout('fncShow( 2 )',100);
obj.style.display = 'block';
}
function fncHide()
{
var obj = document.getElementById('Pop');
obj.style.display = 'none';
setTimeout('fncShow( 1 )',100);
}
//-->
</script>
<input type='button' onclick='fncClick()' value='팝업' />
<div id='wall' style='display:none; position:absolute; background-color:#f00; width:100%; margin:0 auto; left:0; top:0; height:100%; filter:Alpha(Opacity=10) revealTrans(transition=23,duration=0.1) blendTrans(duration=0.1); z-index:1;'></div>
<div id='Pop' style='position:absolute; background-color:#9a9a9a; right:0px; left:0px; top:0px; z-index:4; display:none'>
<div>
<div style='text-align:center;'><input type='button' name='close' value='종료' onclick='fncHide();' />
</div>
<div style='float:left;'><img src='http://imgnews.naver.com/image/001/2008/09/03/PYH2008082803850034000_P2.jpg' />
</div>
</div>
</div>
방법은 레이어팝업을 이용하는것 뿐입니다.