<view>
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Das <view>
SVG-Element definiert eine bestimmte Ansicht eines SVG-Dokuments. Eine spezifische Ansicht kann angezeigt werden, indem das <view>
-Element-id
als Ziel-Fragment einer URL referenziert wird.
Verwendungskontext
Kategorien | Keine |
---|---|
Erlaubter Inhalt | Beliebige Anzahl folgender Elemente, in beliebiger Reihenfolge: Beschreibende Elemente |
Attribute
viewBox
preserveAspectRatio
zoomAndPan
Veraltet Nicht standardisiert
Beispiel
SVG
svg
<svg viewBox="0 0 300 100" width="300" height="100"
xmlns="http://www.w3.org/2000/svg">
<view id="one" viewBox="0 0 100 100" />
<circle cx="50" cy="50" r="40" fill="red" />
<view id="two" viewBox="100 0 100 100" />
<circle cx="150" cy="50" r="40" fill="green" />
<view id="three" viewBox="200 0 100 100" />
<circle cx="250" cy="50" r="40" fill="blue" />
</svg>
HTML
html
<img src="example.svg" alt="three circles" width="300" height="100" />
<br />
<img src="example.svg#three" alt="blue circle" width="100" height="100" />
Ergebnis
DOM-Schnittstelle
Dieses Element implementiert die SVGViewElement
Schnittstelle.
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # ViewElement |
Browser-Kompatibilität
BCD tables only load in the browser