Detailed explanation of the allowTransparency attribute of iframe in html

黄舟
Release: 2017-07-21 11:30:40
Original
12313 people have browsed it

IE5.5 begins to support the content transparency of floating frames. If you want to define transparent content for a floating frame, the following conditions must be met.
1. The allowTransparency tag attribute used with iframe elements must be set to true.
2. In the iframe content source document, the bgColor tag attribute of the background-color or body element must be set to transparent.
Specific steps: 1. Include the code of the frame page.

<body bgColor="#eeeeee">
<iframe allowTransparency="true" src="transparent.htm">
</iframe>
Copy after login

2. The code of the transparent.htm page.

<body bgColor="transparent">
Copy after login



Special Note
This example mainly applies the allowTransparency attribute of the iframe object. When this attribute is set to true and the iframe The iframe will become transparent when the background color of the loading page is set to transparent.
allowTransparency sets or gets whether the object can be transparent.

bgColor Sets or gets the background color of the object.

The above is the detailed content of Detailed explanation of the allowTransparency attribute of iframe in html. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!