관리 메뉴

nkdk의 세상

[팁] 눈에 안 보이는 레이어 만들어서 이미지 띄우기 본문

My Programing/HTML and JavaScript

[팁] 눈에 안 보이는 레이어 만들어서 이미지 띄우기

nkdk 2008. 3. 7. 19:14
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();">

^^