この翻訳は不完全です。英語から この記事を翻訳 してください。
<foreignObject>
SVG 要素は、異なるユーザーエージェントによって描画されるグラフィックコンテンツを持つ外部XML名前空間を含めることを可能にします。含まれた外部グラフィックコンテンツは、SVG 変換や合成の対象となります。
The contents of foreignObject
are assumed to be from a different namespace. Any SVG elements within a foreignObject
will not be drawn, except in the situation where a properly defined SVG subdocument with a proper xmlns
attribute specification is embedded recursively. One situation where this can occur is when an SVG document fragment is embedded within another non-SVG document fragment, which in turn is embedded within an SVG document fragment (e.g., an SVG document fragment contains an XHTML document fragment which in turn contains yet another SVG document fragment).
Usually, a foreignObject
will be used in conjunction with the <switch>
element and the requiredExtensions
attribute to provide proper checking for user agent support and provide an alternate rendering in case user agent support is not available.
利用可能な場所
カテゴリ | None |
---|---|
許可された内容 | いくつかの要素や文字データ |
例
<svg width="400px" height="300px" viewBox="0 0 400 300" xmlns="https://www.w3.org/2000/svg"> <desc>This example uses the 'switch' element to provide a fallback graphical representation of a paragraph, if XHTML is not supported.</desc> <!-- The 'switch' element will process the first child element whose testing attributes evaluate to true.--> <switch> <!-- Process the embedded XHTML if the requiredExtensions attribute evaluates to true (i.e., the user agent supports XHTML embedded within SVG). --> <foreignObject width="100" height="50" requiredExtensions="https://www.w3.org/1999/xhtml"> <!-- XHTML content goes here --> <body xmlns="https://www.w3.org/1999/xhtml"> <p>Here is a paragraph that requires word wrap</p> </body> </foreignObject> <!-- Else, process the following alternate SVG. Note that there are no testing attributes on the 'text' element. If no testing attributes are provided, it is as if there were testing attributes and they evaluated to true.--> <text font-size="10" font-family="Verdana"> <tspan x="10" y="10">Here is a paragraph that</tspan> <tspan x="10" y="20">requires word wrap.</tspan> </text> </switch> </svg>
属性
グローバル属性
専用属性
DOM インターフェイス
この要素は SVGForeignObjectElement
インターフェイスを実装します。
仕様
仕様 | 状態 | コメント |
---|---|---|
Scalable Vector Graphics (SVG) 2 <foreignObject> の定義 |
勧告候補 | |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) <foreignObject> の定義 |
勧告 | 初期の定義 |
ブラウザー互換性
機能 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本サポート | 1.0 | 1.9 | 未サポート | 2.0 | 3.0 |
機能 | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基本サポート | ? | 18.0 | 2.0 | 未サポート | 2.0 | 3.0 |
この表はこのソースに基づくものです。