반응형
// IFRAME 리사이즈
function ifr_resize(obj) {
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
// 사용법
<iframe src="#" width="500" height="300" scrolling="no" align="left" hspace="0" vspace="0" onLoad="ifr_resize(this);"></iframe>
반응형
'HTML' 카테고리의 다른 글
브라우저 사이즈에따라 폰트사이즈 변경 - 반응형웹font-size (0) | 2018.04.17 |
---|---|
버튼 클릭시 alert 메세지 팝업 띄우기 (0) | 2017.05.22 |
사이드 고정 스크롤배너 (0) | 2017.05.15 |