Skip to content

iframe 자동 높이 조절

* 스크립트

<script type="text/javascript">
function resizeiframecent(ifid, oldx, oldy) {
var actualwidth = document.getElementById(ifid).offsetWidth;
 
var proporcion = actualwidth / oldx;
newheight=proporcion * oldy;
var newheight2 = Math.ceil(newheight);
 
document.getElementById(ifid).height = newheight2;
}
</script>

* 아이프레임

<iframe src="아이프레임 경로" frameborder="0"  id="iframe" onload="resizeiframecent('iframe','560','315')" width="100%"></iframe>

comments 0

leave comments

Powered by Textyle

Design & UI Develop By The RaiN Story

Admin