diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/cssvalue | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/cssvalue')
-rw-r--r-- | files/ja/web/api/cssvalue/csstext/index.html | 61 | ||||
-rw-r--r-- | files/ja/web/api/cssvalue/cssvaluetype/index.html | 81 | ||||
-rw-r--r-- | files/ja/web/api/cssvalue/index.html | 82 |
3 files changed, 224 insertions, 0 deletions
diff --git a/files/ja/web/api/cssvalue/csstext/index.html b/files/ja/web/api/cssvalue/csstext/index.html new file mode 100644 index 0000000000..257c47bb63 --- /dev/null +++ b/files/ja/web/api/cssvalue/csstext/index.html @@ -0,0 +1,61 @@ +--- +title: CSSValue.cssText +slug: Web/API/CSSValue/cssText +tags: + - API + - CSSValue + - Property + - Reference + - cssText +translation_of: Web/API/CSSValue/cssText +--- +<div>{{APIRef("DOM")}}</div> + +<p>{{domxref("CSSValue")}} インターフェイスの <code><strong>cssText</strong></code> プロパティは、現在計算されている CSS プロパティ値を表します。</p> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox notranslate"><var>cssText</var> = <var>cssValue</var>.cssText; +</pre> + +<h3 id="値">値</h3> + +<p>現在の CSS プロパティ値を表す {{domxref("DOMString")}} 。</p> + +<h2 id="例">例</h2> + +<pre class="brush: js; highlight[3] notranslate">var styleDeclaration = document.styleSheets[0].cssRules[0].style; +var cssValue = styleDeclaration.getPropertyCSSValue("color"); +console.log(cssValue.cssText); +</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName('DOM2 Style', 'css.html#CSS-CSSValue-cssText', 'CSSValue.cssText')}}</td> + <td>{{Spec2('DOM2 Style')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2> + +<div> + + +<p>{{Compat("api.CSSValue.cssText")}}</p> +</div> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>{{domxref("CSSStyleDeclaration.getPropertyCSSValue()")}}</li> +</ul> diff --git a/files/ja/web/api/cssvalue/cssvaluetype/index.html b/files/ja/web/api/cssvalue/cssvaluetype/index.html new file mode 100644 index 0000000000..fcae4ec1b9 --- /dev/null +++ b/files/ja/web/api/cssvalue/cssvaluetype/index.html @@ -0,0 +1,81 @@ +--- +title: CSSValue.cssValueType +slug: Web/API/CSSValue/cssValueType +tags: + - API + - CSSValue + - Property + - Read-only + - Reference + - cssValueType +translation_of: Web/API/CSSValue/cssValueType +--- +<div>{{APIRef("DOM")}}</div> + +<p>{{domxref("CSSValue")}} インターフェイスの <code><strong>cssValueType</strong></code> 読み取り専用プロパティは、現在計算されている CSS プロパティ値の型を表します。</p> + +<h2 id="構文">構文</h2> + +<pre class="syntaxbox notranslate"><var>cssValueType</var> = <var>cssValue</var>.cssValueType; +</pre> + +<h3 id="値">値</h3> + +<p>値の型を定義するコードを表す <code>unsigned short</code> 。可能な値は次のとおりです:</p> + +<table class="standard-table"> + <tbody> + <tr> + <td class="header">定数</td> + <td class="header">説明</td> + </tr> + <tr> + <td><code>CSS_CUSTOM</code></td> + <td>値はカスタム値です。</td> + </tr> + <tr> + <td><code>CSS_INHERIT</code></td> + <td>値は継承され、 <code>cssText</code> には <code>"inherit"</code> が含まれます。</td> + </tr> + <tr> + <td><code>CSS_PRIMITIVE_VALUE</code></td> + <td>値はプリミティブ値であり、 {{domxref("CSSPrimitiveValue")}} インターフェイスのインスタンスは、 <code>CSSValue</code> インターフェイスのこのインスタンスでバインディング固有のキャストメソッドを使用して取得できます。</td> + </tr> + <tr> + <td><code>CSS_VALUE_LIST</code></td> + <td>値は <code>CSSValue</code> リストであり、 {{domxref("CSSValueList")}} インターフェイスのインスタンスは、 <code>CSSValue</code> インターフェイスのこのインスタンスでバインディング固有のキャストメソッドを使用して取得できます。</td> + </tr> + </tbody> +</table> + +<h2 id="例">例</h2> + +<pre class="brush: js; highlight[3] notranslate">var styleDeclaration = document.styleSheets[0].cssRules[0].style; +var cssValue = styleDeclaration.getPropertyCSSValue("color"); +console.log(cssValue.cssValueType); +</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName('DOM2 Style', 'css.html#CSS-CSSValue-cssValueType', 'CSSValue.cssValueType')}}</td> + <td>{{Spec2('DOM2 Style')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2> + +<div> + + +<p>{{Compat("api.CSSValue.cssValueType")}}</p> +</div> diff --git a/files/ja/web/api/cssvalue/index.html b/files/ja/web/api/cssvalue/index.html new file mode 100644 index 0000000000..07d56db6de --- /dev/null +++ b/files/ja/web/api/cssvalue/index.html @@ -0,0 +1,82 @@ +--- +title: CSSValue +slug: Web/API/CSSValue +tags: + - API + - CSSOM + - CSSValue + - Interface + - NeedsExample + - Obsolete + - Reference +translation_of: Web/API/CSSValue +--- +<div>{{APIRef("CSSOM")}}</div> + +<p><code><strong>SSValue</strong></code> インターフェイスは、 CSS プロパティの現在の計算値を表します。</p> + +<h2 id="プロパティ">プロパティ</h2> + +<dl> + <dt>{{DOMxRef("CSSValue.cssText")}}</dt> + <dd>現在の値を表す {{DOMxRef("DOMString")}} 。</dd> + <dt>{{DOMxRef("CSSValue.cssValueType")}}{{ReadOnlyInline}}</dt> + <dd>値の型を定義するコードを表す <code>unsigned short</code> 。可能な値は次のとおりです: + <table class="standard-table"> + <tbody> + <tr> + <td class="header">定数</td> + <td class="header">説明</td> + </tr> + <tr> + <td><code>CSS_CUSTOM</code></td> + <td>The value is a custom value.</td> + </tr> + <tr> + <td><code>CSS_INHERIT</code></td> + <td>The value is inherited and the <code>cssText</code> contains <code>"inherit"</code>.</td> + </tr> + <tr> + <td><code>CSS_PRIMITIVE_VALUE</code></td> + <td>The value is a primitive value and an instance of the {{DOMxRef("CSSPrimitiveValue")}} interface can be obtained by using binding-specific casting methods on this instance of the <code>CSSValue</code> interface.</td> + </tr> + <tr> + <td><code>CSS_VALUE_LIST</code></td> + <td>The value is a <code>CSSValue</code> list and an instance of the {{DOMxRef("CSSValueList")}} interface can be obtained by using binding-specific casting methods on this instance of the <code>CSSValue</code> interface.</td> + </tr> + </tbody> + </table> + </dd> +</dl> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName('DOM2 Style', 'css.html#CSS-CSSValue', 'CSSValue')}}</td> + <td>{{Spec2('DOM2 Style')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2> + +<div> + + +<p>{{Compat("api.CSSValue")}}</p> +</div> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>{{DOMxRef("CSSPrimitiveValue")}}</li> + <li>{{DOMxRef("CSSValueList")}}</li> +</ul> |