aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/rotate/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-14 00:57:05 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-22 15:07:25 +0900
commit991da9bf0975e595f7cc584cdf2ea6cb8a14b7ad (patch)
tree7b4c7e45df2ea42ac54eb81d4d5bce9b7ef6d494 /files/ja/web/css/rotate/index.html
parent3ac2a8d84ed0236cca327f5c3e58a3be850c8139 (diff)
downloadtranslated-content-991da9bf0975e595f7cc584cdf2ea6cb8a14b7ad.tar.gz
translated-content-991da9bf0975e595f7cc584cdf2ea6cb8a14b7ad.tar.bz2
translated-content-991da9bf0975e595f7cc584cdf2ea6cb8a14b7ad.zip
CSS 変換の各ページの変換準備
Diffstat (limited to 'files/ja/web/css/rotate/index.html')
-rw-r--r--files/ja/web/css/rotate/index.html120
1 files changed, 0 insertions, 120 deletions
diff --git a/files/ja/web/css/rotate/index.html b/files/ja/web/css/rotate/index.html
deleted file mode 100644
index 20d76f9561..0000000000
--- a/files/ja/web/css/rotate/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: rotate
-slug: Web/CSS/rotate
-tags:
- - CSS
- - CSS Property
- - Reference
- - Transforms
-translation_of: Web/CSS/rotate
----
-<div>{{CSSRef}}{{SeeCompatTable}}</div>
-
-<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>rotate</code></strong> プロパティは、 {{CSSxRef("transform")}} とは個別に独立して回転変換を指定することができます。これは一般のユーザーインターフェイスの利用においてはより適しており、 <code>transform</code> の値で変形関数を指定する実際の順序を覚えておく手間を軽減します。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="brush: css">/* キーワード値 */
-rotate: none;
-
-/* 角度値 */
-rotate: 90deg;
-rotate: 0.25turn;
-rotate: 1.57rad;
-
-/* x, y, z 軸名と角度 */
-rotate: x 90deg;
-rotate: y 0.25turn;
-rotate: z 1.57rad;
-
-/* ベクトルと角度の値 */
-rotate: 1 1 1 90deg;</pre>
-
-<h3 id="Values" name="Values">値</h3>
-
-<dl>
- <dt>角度値</dt>
- <dd>{{CSSxRef("&lt;angle&gt;")}} で、 z 軸の周囲を該当する要素を貫いて回転させる角度を指定します。<code>rotate()</code> (2次元回転) 関数と等価です。</dd>
- <dt>x, y, z 軸と角度値</dt>
- <dd>該当する要素を回転する軸の名前 (<code>"x"</code>, "<code>y</code>", "<code>z"</code>) と、要素を貫いて回転する角度を指定する {{CSSxRef("&lt;angle&gt;")}} です。 <code>rotateX()</code>/<code>rotateY()</code>/<code>rotateZ()</code> (3次元回転) 関数と等価です。</dd>
- <dt>ベクトルと角度値</dt>
- <dd>要素を回転させたい直線を表す原点を中心としたベクトルを表す三つの数値 {{CSSxRef("&lt;number&gt;")}} と、要素を貫いて回転する角度を指定する {{CSSxRef("&lt;angle&gt;")}} です。 <code>rotate3d()</code> (3次元回転) 関数と等価です。</dd>
- <dt id="none"><code>none</code></dt>
- <dd>回転を適用しないことを表します。</dd>
-</dl>
-
-<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
-
-{{CSSSyntax}}
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;div&gt;
-  &lt;p class="rotate"&gt;Rotation&lt;/p&gt;
-&lt;/div&gt;</pre>
-
-<h3 id="CSS">CSS</h3>
-
-<div class="hidden">
-<pre class="brush: css">* {
- box-sizing: border-box;
-}
-
-html {
- font-family: sans-serif;
-}
-
-div {
- width: 150px;
- margin: 0 auto;
-}
-
-p {
- padding: 10px 5px;
- border: 3px solid black;
- border-radius: 20px;
- width: 150px;
- font-size: 1.2rem;
- text-align: center;
-}
-</pre>
-</div>
-
-<pre class="brush: css">.rotate {
- transition: rotate 1s;
-}
-
-div:hover .rotate {
- rotate: 1 -0.5 1 180deg;
-}</pre>
-
-<h3 id="Result" name="Result">結果</h3>
-
-<p>{{EmbedLiveSample("Examples")}}</p>
-
-<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('CSS Transforms 2', '#individual-transforms', 'individual transforms')}}</td>
- <td>{{Spec2('CSS Transforms 2')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<p>{{CSSInfo}}</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
-
-<p>{{Compat("css.properties.rotate")}}</p>