diff options
Diffstat (limited to 'files/ja/web/css/shape/index.md')
-rw-r--r-- | files/ja/web/css/shape/index.md | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/files/ja/web/css/shape/index.md b/files/ja/web/css/shape/index.md new file mode 100644 index 0000000000..c4cc8fcae2 --- /dev/null +++ b/files/ja/web/css/shape/index.md @@ -0,0 +1,81 @@ +--- +title: <shape> +slug: Web/CSS/shape +tags: + - CSS + - CSS Reference +translation_of: Web/CSS/shape +--- +<div>{{CSSRef}}</div> + +<p><code><shape></code> <a href="/ja/docs/CSS" title="CSS">CSS</a> データ型は、ある領域の具体的な形状を表します。この領域は、要素のどの部分で {{Cssxref("clip")}} のようなプロパティが用いられるのか、定義するのに使われます。</p> + +<div class="blockIndicator note"> +<p><strong>Note:</strong> <code><shape></code> and <code>rect()</code> <span class="tlid-translation translation" lang="ja"><span title="">は廃止された</span></span>{{cssxref("clip")}}<span class="tlid-translation translation" lang="ja"><span title="">と連動しますが、</span></span> {{cssxref("clip-path")}}が支持されました<span class="tlid-translation translation" lang="ja"><span title="">。</span> <span title="">可能であれば、代わりに</span></span><code>clip-path</code><span class="tlid-translation translation" lang="ja"><span title="">と</span></span>{{cssxref("<basic-shape>")}}<span class="tlid-translation translation" lang="ja"><span title="">データ型を使用してください。</span></span></p> +</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<p><code>rect()</code> 関数記法は、矩形の領域を作ります。</p> + +<h3 id="Syntax" name="Syntax"><code>rect()</code> 関数</h3> + +<pre class="syntaxbox">rect(<em>top</em>, <em>right</em>, <em>bottom</em>, <em>left</em>) +</pre> + +<p>引数は次の長さを表します: <img class="internal rwrap" src="/@api/deki/files/5730/=rect.png" style="float: right; height: 334px; width: 336px;"></p> + +<dl style="margin-left: 40px;"> + <dt><em>top</em></dt> + <dd>要素のボックスのボーダーの top と、矩形の top との差を表す {{cssxref("<length>")}}</dd> + <dt><em>right</em></dt> + <dd>要素のボックスのボーダーの left と、矩形の right との差を表す {{cssxref("<length>")}}</dd> + <dt><em>bottom</em></dt> + <dd>要素のボックスのボーダーの top と、矩形の bottom との差を表す {{cssxref("<length>")}}。</dd> + <dt><em>left</em></dt> + <dd>要素のボックスのボーダーの left と、矩形の left との差を表す {{cssxref("<length>")}}</dd> +</dl> + +<h2 id="Interpolation" name="Interpolation">補間</h2> + +<p>矩形の <code><shape></code> CSS データ型の値は、アニメーション用に補間可能です。<code>top</code>、<code>right</code>、<code>bottom</code> 、<code>left</code> のそれぞれが実数(浮動小数点数)として扱われ、補間されます。補間速度は、アニメーションに結びつけられた <a href="/ja/docs/CSS/timing-function" title="timing-function">timing function</a> で決められます。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<pre class="brush:css">img.clip04 { + clip: rect(10px, 20px, 20px, 10px); +}</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">策定状況</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS2.1', 'visufx.html#value-def-shape', '<shape>')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>{{cssxref("clip")}} プロパティと同時に定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2> + +<div> + + +<p>{{Compat("css.types.shape")}}</p> +</div> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>関連 CSS プロパティ: {{Cssxref("clip")}}</li> + <li><a href="/ja/CSS/-moz-image-rect" title="CSS/-moz-image-rect"><code>-moz-image-rect()</code></a> 関数は <code>rect()</code>と似た座標を使います</li> +</ul> |