HTML の iframe は、HTML ドキュメントに別の HTML ドキュメントを追加するために使用されるインライン フレームに他なりません。これは主に、Web ページや Web 開発プロセスで、その Web ページ上の広告など、別のソースを通じて他のコンテンツを組み込むために使用されます。
ほとんどの Web デザイナーは、Web サイトまたは Web ページ上にインタラクティブなアプリケーションを表示するために Iframe を使用します。 JavaScript または HTML の target 属性を使用して可能になります。
iframe の主な目的は、Web ページを別の Web ページ内に表示することです。インラインフレームは
構文
<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 中国語 Web サイトの他の関連記事を参照してください。