본문 바로가기

스크립트

모바일 리사이즈 아이프레임 스크롤컨트롤

<★SCRIPT LANGUAGE="JavaScript"> 
function resizeIframe(fr) { 
fr.setExpression('height',ifrm.document.body.scrollHeight); 
fr.setExpression('width',ifrm.document.body.scrollWidth); 
} 
 

<★div style="padding:10px; overflow:scroll; overflow-x:hidden; -webkit-overflow-scrolling: touch; height:200px; margin-bottom:-1px; border:1px solid #d9d9d9; ">
	<★iframe id="test_agree" src="iframe_agree.html" scrolling="yes" style="overflow:hidden; display:inline-block; width:100%; height:100%; border:0; background:transparent;" onload="resizeIframe(this)">

<★iframe width="100%" src="iframe_agree.html" scrolling="no" id="the_iframe" onLoad="calcHeight();" height="1px" frameborder="0" >

<★script type="text/javascript">
   function calcHeight()
   {
    //find the height of the internal page
    var the_height=
    document.getElementById('the_iframe').contentWindow.
    document.body.scrollHeight;

    //change the height of the iframe
    document.getElementById('the_iframe').height=
    the_height;
   }
<★/script>
	

'스크립트' 카테고리의 다른 글

li 가로 자동정렬  (0) 2016.08.11
아이프레임 모바일 버그 스크롤 제어  (0) 2016.06.28
현재창닫기  (0) 2016.06.23