A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/ja/docs/Web/API/SVGTextPositioningElement/rotate below:

SVGTextPositioningElement: rotate プãƒãƒ‘ティ - Web API

SVGTextPositioningElement: rotate プロパティ

Baseline Widely available

rotate は SVGTextPositioningElement インターフェイスの読み取り専用プロパティで、指定された要素の rotate 属性で指定されたとおりに、個々のテキスト文字の回転を反映します。

値

SVGAnimatedNumberList オブジェクトです。

例

次の SVG があったとします。

<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <text x="10" y="20" rotate="45">Hello</text>
  <text x="50" y="50" rotate="90">World</text>
</svg>

rotate 属性にアクセスできます。

const texts = document.querySelectorAll("text");

console.log(texts[0].rotate.baseVal); // 出力: 45
console.log(texts[1].rotate.baseVal); // 出力: 90
仕様書 ブラウザーの互換性 関連情報

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4