iframe 옵션들
<iframe
src=" //연결될 주소 ex)http://www.naver.com
frameborder="" // 테두리 사용 여부 ex) 0:사용안함 1:사용
width="" // iframe 가로크기 ex) 100% / 1024px
height="" // iframe 세로크기 ex) 100% / 1024px
scrolling="" // 스크롤바 사용 여부 ex) yes / no / auto
align="" // iframe 내부 페이지 정렬 방식 ex) center / left / right
name="" // iframe 이름 -> target 지정시 사용
id="" // iframe 의 id -> script 에서 사용
hspace="" // 기준되는 곳으로 부터 iframe 의 가로 위치
vspace="" //기준되는 곳ㅇ로 부터 iframe 의 세로 위치
marginwidth="" //가로 여백
marginheight="" //세로 여백
style="zoom:100%" // 원본 페이지 : 출력페이지 비율 조정
></iframe>
예제
<iframe src="http://www.naver.com" frameborder="0" width="100%" height="100%" scrolling="auto" align="center" name="iframe_test"></iframe>
그냥 네이버창 띄우기...
응용
<script>
function set_iframe(){
document.getElementById('iframe_test').src="http://www.bilco.co.kr";
}
function reset_iframe(){
document.getElementById('iframe_test').src="http://www.koreatm.co.kr";
}
</script>
<a onmouseover="set_iframe()" onmouseout="reset_iframe()">마우스 올려보세요</a>
<iframe src="http://www.naver.com" frameborder="1"width="100%" height="100%" scrolling="auto" align="center" Id="iframe_test" hspace="0" vspace="0"></iframe>
[출처] 無 | 키에르 (http://blog.naver.com/vfxx/100104431497)
'프로그래밍 > HTML & JavaScript' 카테고리의 다른 글
html 기본 풀다운 메뉴 만들기 (0) | 2015.01.27 |
---|---|
html img 태그의 alt 옵션 줄바꿈 (0) | 2015.01.27 |
[팝업] window.open 속성 사용 예제 (0) | 2015.01.27 |
팝업창 닫기 태그 (0) | 2015.01.27 |
html 줄간격, 폰트, 글자 크기, 글자 색상 정하기 (0) | 2015.01.27 |