Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- rss
- php
- 디즈니씨
- 베트남어
- php thumbnail
- scala
- 메일왕창보내는법
- node.js web framework
- 주식이야기
- Node.js
- ejb
- Eclipse
- 명사 추출기
- C/C++
- Cross
- iBatis
- 책이야기
- nodejs express
- 도커
- express for node.js
- flex3
- ror실행
- 나의 프로젝트
- 명사 뽑아내기
- 명사 분석기
- docker
- 스킨 스쿠버
- 나의 취미
- ajax
- Lift
Archives
- Today
- Total
nkdk의 세상
[팁] 눈에 안 보이는 레이어 만들어서 이미지 띄우기 본문
function init(){
imgs=new Array(); //이미지 배열
urls=new Array(); //링크주소 배열
imgs[imgs.length]='images/page_06_04_02.gif'; //샘플 이미지 주소
urls[urls.length]='http://local.daum.net/event/041123/find_pop.jsp?goodNum=3'; //샘플 링크 주소
var nBox = document.createElement("div"); //레이어 생성
document.body.insertBefore(nBox); //레이어 뿌림
nBox.style.position='absolute'; //스타일중 포지션을 절대값으로 지정
nBox.style.top=200; //레이어의 세로위치 지정
nBox.style.left=300; //레이어의 가로위치 지정
nBox.innerHTML="<iframe src='popup/ui_popup.htm' frameborder=0 scrolling=no width=460 height=367 topmargin=0 leftmargin=0 marginwidth=0 marginheight=0></iframe>";
}
<body onload="init();">
^^
imgs=new Array(); //이미지 배열
urls=new Array(); //링크주소 배열
imgs[imgs.length]='images/page_06_04_02.gif'; //샘플 이미지 주소
urls[urls.length]='http://local.daum.net/event/041123/find_pop.jsp?goodNum=3'; //샘플 링크 주소
var nBox = document.createElement("div"); //레이어 생성
document.body.insertBefore(nBox); //레이어 뿌림
nBox.style.position='absolute'; //스타일중 포지션을 절대값으로 지정
nBox.style.top=200; //레이어의 세로위치 지정
nBox.style.left=300; //레이어의 가로위치 지정
nBox.innerHTML="<iframe src='popup/ui_popup.htm' frameborder=0 scrolling=no width=460 height=367 topmargin=0 leftmargin=0 marginwidth=0 marginheight=0></iframe>";
}
<body onload="init();">
^^