HTML iframe标签用法案例详解
iframe一般用来包含别的页面,例如我们可以在我们自己的网站页面加载别人网站的内容,为了更好的效果,可能需要使iframe透明效果,那么就需要了解更多的iframe属性。
一、iframe 定义和用法
iframe 元素会创建包含另外一个文档的内联框架(即行内框架)。
html 与 xhtml 之间的差异
在 html 4.1 strict dtd 和 xhtml 1.0 strict dtd 中,不支持 iframe 元素。
提示和注释:
提示:您可以把需要的文本放置在 <iframe> 和 </iframe> 之间,这样就可以应对无法理解 iframe 的浏览器。
iframe标签是成对出现的,以<iframe>开始,</iframe>结束
iframe标签内的内容可以做为浏览器不支持iframe标签时显示
二、属性
new :html5 中的新属性。
属性 | 值 | 描述 |
---|---|---|
left right top middle bottom |
html5 不支持。html 4.01 已废弃。 规定如何根据周围的元素来对齐 <iframe>。 | |
1 0 |
html5 不支持。规定是否显示 <iframe> 周围的边框。 | |
pixels | 规定 <iframe> 的高度。 | |
url | html5 不支持。规定一个页面,该页面包含了有关 <iframe> 的较长描述。 | |
pixels | html5 不支持。规定 <iframe> 的顶部和底部的边距。 | |
pixels | html5 不支持。规定 <iframe> 的左侧和右侧的边距。 | |
name | 规定 <iframe> 的名称。 | |
new | "" allow-forms allow-same-origin allow-scripts allow-top-navigation |
对 <iframe> 的内容定义一系列额外的限制。 |
yes no auto |
html5 不支持。规定是否在 <iframe> 中显示滚动条。 | |
new | seamless | 规定 <iframe> 看起来像是父文档中的一部分。 |
url | 规定在 <iframe> 中显示的文档的 url。 | |
new | html_code | 规定页面中的 html 内容显示在 <iframe> 中。 |
pixels | 规定 <iframe> 的宽度。 |
三、示例
1、iframe框架
代码如下:
<iframe src="https://www.test.net" width="200" height="500"> 该网站使用了框架技术,但是您的浏览器不支持框架,请升级您的浏览器以便正常访问。 </iframe>
2、iframe透明
在transparentbody.htm文件的<body>标签中,我已经加入了style="background-color=transparent" 通过以下四种iframe的写法我想大概你对iframe背景透明效果的实现方法应该会有个清晰的了解:
代码如下:
<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>
注:iframe是迫不得已才使用的,因为使用iframe会带来较多的问题,而有的浏览器可以设置将iframe当作广告屏蔽。
在最近的一个工作内容中使用了iframe,开始遇到的问题是iframe高度自适应的问题,这问题在口碑网ued团队博客中找到了解决办法,后来更遇到一个iframe透明的问题 ,通常 iframe底色会是白色,在不同浏览器下可能会有不同的颜色,如果主页面有一个整体的背景色或者背景图片的时候 ,iframe区域便会出现一个白色块,与主体页面不协调,这就需要iframe透明
通过google搜索iframe透明找到了解决办法
代码如下:
<iframe src="./ads_top_tian.html" allowtransparency="true" style="background-color=transparent" title="test" frameborder="0" width="470" height="308" scrolling="no"></iframe>
当然前提是iframe页面中没有设置颜色
[code]
注:iframe透明主要是使用了 allowtransparency="true" style="background-color=transparent"
3、iframe自适应高度
由于篇幅过长,大家可以移步这里查看
4、通过js输出iframe广告代码
[code]
document.write('<iframe align=middle marginwidth=0 marginheight=0 src="http://img.jb51.net/imgby/468_1.htm" frameborder=no scrolling=no width=660 height=80></iframe>');
有时候我们需要考虑用户的浏览器是否支持iframe标签,那么就需要如下的写法
代码如下:
<iframe frameborder="0" name="iframe1" src="https://www.jb51.net/" width="100%" height="200"> 您的浏览器不支持嵌入式框架,或者当前配置为不显示嵌入式框架。 </iframe>
到此这篇关于html iframe标签用法案例详解的文章就介绍到这了,更多相关html iframe标签用法内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
下一篇: C# DateTime与时间戳转换