diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-05-01 01:18:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 01:18:16 +0900 |
commit | a99a7646d4aa22025de65b57d479b65bef0cfb96 (patch) | |
tree | 35c06959cebbb31f9c3bf85a5d1eea06e866024d /files/ja/web/api | |
parent | 7b487911321ba7a357f76044f296f3398d9652a4 (diff) | |
download | translated-content-a99a7646d4aa22025de65b57d479b65bef0cfb96.tar.gz translated-content-a99a7646d4aa22025de65b57d479b65bef0cfb96.tar.bz2 translated-content-a99a7646d4aa22025de65b57d479b65bef0cfb96.zip |
Element.currentStyle を新規翻訳 (#520)
2020/12/23 時点の英語版に基づき新規翻訳
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/element/currentstyle/index.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/files/ja/web/api/element/currentstyle/index.html b/files/ja/web/api/element/currentstyle/index.html new file mode 100644 index 0000000000..24548064d8 --- /dev/null +++ b/files/ja/web/api/element/currentstyle/index.html @@ -0,0 +1,50 @@ +--- +title: Element.currentStyle +slug: Web/API/Element/currentStyle +tags: + - API + - NeedsExample + - Non-standard + - Property +translation_of: Web/API/Element/currentStyle +--- +<p>{{Non-standard_header}}</p> + +<p class="summary"><span class="seoSummary"><strong><code>Element.currentStyle</code></strong> は独自プロパティで、標準化されている {{DOMxRef("window.getComputedStyle()")}} メソッドに似ているものです。</span>古いバージョンの Microsoft Internet Explorer で使用できます。しかし、 <code>window.getComputedStyle()</code> がピクセル数で値を返すのに対し、これは CSS で設定された単位で返します。</p> + +<h2 id="Polyfill">ポリフィル</h2> + +<div class="note"> +<p>このポリフィルは値をピクセル数で返しますが、値を読むたびに {{domxref("window.getComputedStyle()")}} を呼び出さなければならないため、かなり遅くなると思われます。</p> +</div> + +<pre class="brush: js">/* すべての著作権をパブリックドメインに寄贈します。 + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +if (!("currentStyle" in Element.prototype)) { + Object.defineProperty(Element.prototype, "currentStyle", { + get: function() { + return window.getComputedStyle(this); + } + }); +} +</pre> + +<h2 id="Specifications">仕様書</h2> + +<p>どの仕様書にも含まれていません。</p> + +<p>Microsoft は <a href="https://web.archive.org/web/20150629144515/https://msdn.microsoft.com/en-us/library/ms535231(v=vs.85).aspx">MSDN で説明しています</a>。</p> + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("api.Element.currentStyle")}}</p> + +<h2 id="See_also">関連情報</h2> + +<ul> + <li>{{DOMxRef("Element.runtimeStyle")}}</li> + <li>{{DOMxRef("window.getComputedStyle()")}}</li> +</ul> + +<div>{{APIRef("DOM")}}</div> |