iframe背景透明的設(shè)置方法
IE5.5開始支持浮動框架的內(nèi)容透明。如果想要為浮動框架定義透明內(nèi)容,則必須滿足下列條件。
1.與 iframe 元素一起使用的 allowTransparency 標(biāo)簽屬性必須設(shè)置為 true。
2.在 iframe 內(nèi)容源文檔,background-color 或 body 元素的 bgColor 標(biāo)簽屬性必須設(shè)置為 transparent
<iframe src="./ads_top_tian.html" allowtransparency="true" style="background-color=transparent" title="test" frameborder="0" width="470" height="308" scrolling="no"></iframe>
當(dāng)然前提是iframe頁面中沒有設(shè)置顏色.
在上面我們主要是看到了style中的一句代碼style="background-color=transparent" 通過以下四種IFRAME的寫法我想大概你對iframe背景透明效果的實現(xiàn)方法應(yīng)該會有個清晰的了解:
<IFRAME ID="Frame1" SRC="transparentBody.htm" allowTransparency="true"></IFRAME>
<IFRAME ID="Frame2" SRC="transparentBody.htm" allowTransparency="true" STYLE="background-color: green"> </IFRAME>
<IFRAME ID="Frame3" SRC="transparentBody.htm"></IFRAME>
<IFRAME ID="Frame4" SRC="transparentBody.htm" STYLE="background-color: green"> </IFRAME>
現(xiàn)在我們來看一個實例
本例主要是iframe對象的allowTransparency屬性應(yīng)用,在該屬性設(shè)置為true并且iframe所載加頁的背景顏色設(shè)置為transparent(透明)時iframe將透明化。
allowTransparency設(shè)置或獲取對象是否可為透明。
bgColor 設(shè)置或獲取對象的背景顏色
父頁面
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>父頁面</title>
</head>
<body bgcolor="#FF0000">
<iframe src="index.htm" allowTransparency="true"></iframe>
</body>
</html>
子頁面
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>子頁面</title>
<style type="text/css">
body
{
background-color: transparent;
}
</style>
</head>
<body>
</body>
</html>
相關(guān)文章
解決CSS中 display 與 visibility 的區(qū)別
查CSS手冊后發(fā)現(xiàn)了隱藏內(nèi)容原來是有區(qū)別的,一種是保留對象的物理空間,一種是不保留2007-03-03Lesson03_01 什么是CSS和CSS的設(shè)置方式
Lesson03_01 什么是CSS和CSS的設(shè)置方式...2007-02-02如何正確使用標(biāo)題元素、段落和強(qiáng)制換行
如何正確使用標(biāo)題元素、段落和強(qiáng)制換行...2007-02-02為什么要建立web標(biāo)準(zhǔn)與web標(biāo)準(zhǔn)的好處
為什么要建立web標(biāo)準(zhǔn)與web標(biāo)準(zhǔn)的好處...2007-03-03