HTML 中的 iframe 只是用作 HTML 文档的内联框架,用于向其中添加另一个 HTML 文档。它主要用于网页或网络开发过程中,通过另一个来源(例如该网页上的广告)包含其他内容。
大多数网页设计师使用 Iframe 在网站或网页上呈现交互式应用程序。使用 JavaScript 或 HTML 中的目标属性可以实现这一点。
Iframe 的主要用途是在另一个网页中显示一个网页。内联框架应使用名为
语法
<iframe src ="URL"></iframe>
示例:
<iframe src ="www.educba.com" ></iframe>
<iframe src ="URL" height="value" width="value"></iframe>
示例:
<iframe src ="www.educba.com" height="300" width="300"></iframe>
<iframe src ="URL" style="height: value in pixels; width: value in pixels"></iframe>
示例:
<iframe src ="www.educba.com" style="height:300px; width:300px;"></iframe>
<iframe src ="URL" style="border : none;"></iframe>
iframe 可以通过使用以下语法用作链接的目标:
<iframe src ="URL" name="iframe_a"></iframe>
示例:
<iframe src ="www.educba.com" name="iframe_a"></iframe>
Iframe 中使用了不同的属性标签。如下:
以下是 HTML 中 Iframe 的一些示例,解释如下:
让我们考虑一个示例,我们将展示如何创建具有特定高度和宽度的 iframe。
代码:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here, we are showing an example of Iframe which containing specific Height and width in pixels format</p> <iframe src="C:\Users\Sonali\Desktop\HTML block elements.html" height="300" width="300"></iframe> </body> </html>
输出:
让我们考虑另一个例子,我们将展示如何创建具有特定高度和宽度的 iframe。但在这个例子中,我们通过 CSS 指定高度和宽度。在这里我们可以看到滚动条正在根据内容大小进行调整。
代码:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here, we are showing an example of Iframe which containing specific Height and width in pixels format</p> <iframe src="C:\Users\Sonali\Desktop\HTML block elements.html" style="height:100px;width:300px;"></iframe> </body> </html>
输出:
Here we are considering one example in which we will add a border to the iframe by adding some extra CSS properties to show a change in the border’s size, change in the border color, etc. So we can add as much style to our iframe.
Code:
<!DOCTYPE html> <html> <body> <h2>HTML Iframes Demo</h2> <p>Here we are showing an example of Iframe which containing a border with some additional CSS proprties</p> <iframe src="C:\Users\Sonali\Desktop\iframe.html" style="border:3px solid Blue; height: 200px;"></iframe> </body> </html>
Output:
Let’s consider another example where we will show how the target attribute opens a webpage link using an iframe.
Code:
<!DOCTYPE html> <html> <body> <h2>Iframe Demo- Target for a Link</h2> <iframe height="200px" width="100%" src="C:\Users\Sonali\Desktop\iframe1.html" name="iframe1_a"></iframe> <p><a href="https://www.educba.com/courses/">EDUCBA</a></p> <p>When the target of a link matches the name of an iframe, the link will open in the iframe.</p> </body> </html>
Output:
Target Output:
As shown above, for example, we can click on the target link EDUCBA so that it will open the following web page shown below.
An iframe is an inline frame that includes another HTML document in itself. It is the most powerful HTML element for web designing. You can add content from another source. It uses different HTML attributes like Global Attributes, Event Attributes, etc.
以上是HTML 中的 iframe的详细内容。更多信息请关注PHP中文网其他相关文章!