iframe背景透明显示的小例子

发布时间:2019-10-13编辑:脚本学堂
本文介绍下,让iframe框架页,背景透明显示的例子。有需要的朋友,参考下吧。

iframe透明显示的例子。

1,父页面
 

复制代码 代码示例:
<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>

2,子页面
 

复制代码 代码示例:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>子页面_www.jb200.com</title>
<style type="text/css">
body
{
    background-color: transparent;
}
</style>
</head>
<body>
脚本学堂,专业的网站建设、脚本编程、网站编程站点。<br/>
iframe背景透明演示。
</body>
</html>