公告板
 [2008-05-06] 新RSS訂閱連結: http://feeds.ssorc.tw/ssorc
 [2007-09-12] 新網址 http://ssorc.tw
 [2007-07-06] ChangeLog 記錄舊文章變動

瀏覽模式: 普通 | 列表
ref: http://cha.homeip.net/blog/2010/06/2390.html

我還沒試過,大家可以試試

網站內嵌網站並截取某個位置顯示

作法: 使用 iframe 搭配 CSS

<style type="text/css">
#outerdiv
{
width:530px;
height:250px;
overflow:hidden;
position:relative;
}

#inneriframe
{
position:absolute;
top:-0px;
left:-480px;
width:1280px;
height:1200px;
}
</style>

<div id='outerdiv'>
<iframe src="http://blog.yam.com/prayfinedoll" id='inneriframe' scrolling=no frameborder="0" height="250" width="530" ></iframe>
</div>
效果:

[閱讀全文]