2016-02-01 69 views
0

我想將任何屏幕分辨率的圖片的附件紅框部分屏蔽掉;有什麼好的建議? 附加圖像:如何在SWF文件中定位元素以適應屏幕

enter image description here

red box part; 代碼:

<div style="background-color: fff;height: 100%; width: 100%; overflow: hidden; margin: 0;position:relative;"> 
<div id="mask1" style="background:red;width:100px;height:100%;position:absolute;left:0top:10px;"></div> 
<embed id="swf" width="100%" height="100%" name="plugin" src="http://zd.diyifanwen.com/Files/WordSwf/%E6%9D%A8.swf" type="application/x-shockwave-flash"> 
<div id="mask2" style="background:blue;width:600px;height:100px;position:absolute;right:0;bottom:0;"></div> 
</div> 
+0

哪裏紅框部分?? –

回答

0

可以是工作此溶液

添加一個container &添加positionrelative

<div style="position:relative"> 
<embed id="swf" width="100%" height="100%" name="plugin" src="http://zd.diyifanwen.com/Files/WordSwf/%E6%9D%A8.swf" type="application/x-shockwave-flash"> 
    <div id="mask2" style="background:blue;width:600px;height:100px;position:absolute;right:0;bottom:0;"></div> 
</div> 
相關問題