2009년 6월 23일 화요일

html 문서 내 js파일 삽입 스크립트

// HTML Document

<script>
//html 내 js 삽입

document.write("<SCR" + "IPT language=\"JavaScript\" src=\"http://~~/layer.js\"></SCR" + "IPT>");
</script>

 

 

// JavaScript Document

document.write("<style>");

document.write("<div>");
document.write("<a href=\"http://~~~.com\">아토피</a>");

document.write("</div>");

iframe onload시 크기조정

원하는 사이즈 고정

<iframe src="http://~~~~.com" align="center" scrolling="no" frameborder="no" name=frame_name onLoad="this.style.height=220;this.style.width=476"></iframe>

 

 

문서 body 높이

<iframe src="http://~~~~.com" align="center" scrolling="no" frameborder="no" name=f_name onLoad="this.style.height=f_name.document.body.scrollHeight""></iframe>

 

 

 

2009년 6월 22일 월요일

백그라운드 이미지

/* background image */

.class { background:url(웹주소)

            no-repeat  or repeat-x  or repeat-y

            5px(left여백)

            5px(top여백)  

           }

 

 

//사용 예

 

1번만 반복
.right_box { background:url(http://static.naver.com/book/img_new/bg_num01.gif) no-repeat 0 3px  }

 

가로 반복

.right_box { background:url(http://static.naver.com/book/img_new/bg_num01.gif) repeat-x left top}

 

세로 반복

.right_box { background:url(http://static.naver.com/book/img_new/bg_num01.gif) repeat-y left top}