利用 iframe將其他網站 某一個部分的內容 嵌入到 自己的網站中
通過調整 width,height,position 對應的值可以調整顯示區域的位置
- 結構:html
<div class="row"> <div class="col-xs-6 f1"> <iframe id="frame1" frameborder=0 width=960 height=1200 marginheight=0 marginwidth=0 scrolling=no src=http://www.*****.com ></iframe> </div> <div class="col-xs-6 f2 hidden-xs hidden-md clear"> <iframe id="frame2" frameborder=0 width=960 height=2050 marginheight=0 scrolling=no src=http://www.*****.com></iframe> </div> </div>
- 樣式:css
.gallery .f1{height:485px; overflow: hidden;}
.gallery .f2{height:485px; overflow: hidden;}
#frame1{position:absolute; top:-355px;left:0; transform:scale(0.9); z-index:1}
#frame2{position:relative; top:-895px;left:-4.8%; transform:scale(0.9); z-index: 0}