Web Source2015. 9. 20. 21:09

네이버에서는 검색이 어려운 블로그입니다. 구글검색을 이용해 주세요.



http://www.stoimen.com/blog/2011/03/29/scroll-an-iframe-content-to-a-predefined-position/


IFrame 으로 추가하였을 경우 원하는 부분만 보이고 싶다.


#my-div

{

    width    : 400px;

    height   : 200px;

    overflow : hidden;

    position : relative;

}

 

#my-iframe

{

    position : absolute;

    top      : -100px;

    left     : -100px;

    width    : 1280px;

    height   : 1200px;

}


<div id="my-div">

<iframe src="http://www.tistory.com" id="my-iframe" scrolling="no"></iframe>

</div>


===========================================================


또는


<div style="position:relative;width:400px;height:200px;overflow:hidden"> 

<iframe src="http://www.tistory.com" scrolling="no" style="position:absolute;top:-100px;left:-100px;width:1280px;height:1200px"></iframe> 

</div>


'Web Source' 카테고리의 다른 글

PHP MP3 ID3 tag setting  (3) 2016.09.01
Javascript Date Time 24hours millisecond  (0) 2016.03.14
javascript cookie 쿠키, 생성, 사용, 삭제  (0) 2015.09.10
IE SERVER REFERER  (0) 2015.09.04
Reload parent page after submit  (0) 2015.09.04
Posted by 영육치료