From 7552219a2b9c5a049cee4aa2a5f5bc6e97f6e30e Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 1 Feb 2022 22:49:44 +0900 Subject: CSS モーションパスのプロパティの記事を移行 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/offset-rotate/index.html | 126 ------------------------------ files/ja/web/css/offset-rotate/index.md | 126 ++++++++++++++++++++++++++++++ 2 files changed, 126 insertions(+), 126 deletions(-) delete mode 100644 files/ja/web/css/offset-rotate/index.html create mode 100644 files/ja/web/css/offset-rotate/index.md (limited to 'files/ja/web/css/offset-rotate') diff --git a/files/ja/web/css/offset-rotate/index.html b/files/ja/web/css/offset-rotate/index.html deleted file mode 100644 index dc424f3a88..0000000000 --- a/files/ja/web/css/offset-rotate/index.html +++ /dev/null @@ -1,126 +0,0 @@ ---- -title: offset-rotate -slug: Web/CSS/offset-rotate -tags: - - CSS - - CSS Motion Path - - CSS Property - - CSS プロパティ - - CSS モーションパス - - Experimental - - Reference - - offset-rotate - - 'recipe:css-property' -translation_of: Web/CSS/offset-rotate ---- -
{{CSSRef}}
- -

offset-rotate は CSS のプロパティで、要素が {{cssxref("offset-path")}} に沿って配置された場合の向き/方向を定義します。

- -
{{EmbedInteractiveExample("pages/css/offset-rotate.html")}}
- -
-

: 初期のころの仕様書では、このプロパティを motion-rotation と呼んでいました。

-
- -

構文

- -
/* パスの方向に従い、任意で角度を追加 */
-offset-rotate: auto;
-offset-rotate: auto 45deg;
-
-/* パスの方向に従うが、 auto とは逆の方向を向く */
-offset-rotate: reverse;
-
-/* パスの位置に関係なく、決められた回転を維持する */
-offset-rotate: 90deg;
-offset-rotate: .5turn;
- -
-
auto
-
-

要素は正方向の X 軸から見た {{cssxref("offset-path")}} 方向の角度で回転します。これが既定値です。

-
-
{{cssxref("<angle>")}}
-
-

要素は指定された回転角によって、時計方向に固定値で回転変換されます。

-
-
auto <angle>
-
-

auto に {{cssxref("<angle>")}} が続いた場合、その角度autoの計算値に加算されます。

-
-
reverse
-
-

要素は auto と同様に回転しますが、反対方向を向きます。 auto 180deg の値を指定したのと同等です。

-
-
-
- -

形式文法

- -{{csssyntax}} - -

- -

HTML

- -
<div></div>
-<div></div>
-<div></div>
- -

CSS

- -
div {
-  width: 40px;
-  height: 40px;
-  background: #2BC4A2;
-  margin: 20px;
-  clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%, 30% 50%);
-  animation: move 5000ms infinite alternate ease-in-out;
-
-  offset-path: path('M20,20 C20,50 180,-10 180,20');
-}
-div:nth-child(1) {
-  offset-rotate: auto;
-}
-div:nth-child(2) {
-  offset-rotate: auto 90deg;
-}
-div:nth-child(3) {
-  offset-rotate: 30deg;
-}
-
-@keyframes move {
-  100% {
-    offset-distance: 100%;
-  }
-}
- -

結果

- -

{{EmbedLiveSample('Examples', '100%', '200')}}

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('Motion Path Level 1', '#offset-rotate-property', 'offset-rotate')}}{{Spec2('Motion Path Level 1')}}初回定義
- -

{{cssinfo}}

- -

ブラウザーの互換性

- -

{{Compat("css.properties.offset-rotate")}}

diff --git a/files/ja/web/css/offset-rotate/index.md b/files/ja/web/css/offset-rotate/index.md new file mode 100644 index 0000000000..dc424f3a88 --- /dev/null +++ b/files/ja/web/css/offset-rotate/index.md @@ -0,0 +1,126 @@ +--- +title: offset-rotate +slug: Web/CSS/offset-rotate +tags: + - CSS + - CSS Motion Path + - CSS Property + - CSS プロパティ + - CSS モーションパス + - Experimental + - Reference + - offset-rotate + - 'recipe:css-property' +translation_of: Web/CSS/offset-rotate +--- +
{{CSSRef}}
+ +

offset-rotate は CSS のプロパティで、要素が {{cssxref("offset-path")}} に沿って配置された場合の向き/方向を定義します。

+ +
{{EmbedInteractiveExample("pages/css/offset-rotate.html")}}
+ +
+

: 初期のころの仕様書では、このプロパティを motion-rotation と呼んでいました。

+
+ +

構文

+ +
/* パスの方向に従い、任意で角度を追加 */
+offset-rotate: auto;
+offset-rotate: auto 45deg;
+
+/* パスの方向に従うが、 auto とは逆の方向を向く */
+offset-rotate: reverse;
+
+/* パスの位置に関係なく、決められた回転を維持する */
+offset-rotate: 90deg;
+offset-rotate: .5turn;
+ +
+
auto
+
+

要素は正方向の X 軸から見た {{cssxref("offset-path")}} 方向の角度で回転します。これが既定値です。

+
+
{{cssxref("<angle>")}}
+
+

要素は指定された回転角によって、時計方向に固定値で回転変換されます。

+
+
auto <angle>
+
+

auto に {{cssxref("<angle>")}} が続いた場合、その角度autoの計算値に加算されます。

+
+
reverse
+
+

要素は auto と同様に回転しますが、反対方向を向きます。 auto 180deg の値を指定したのと同等です。

+
+
+
+ +

形式文法

+ +{{csssyntax}} + +

+ +

HTML

+ +
<div></div>
+<div></div>
+<div></div>
+ +

CSS

+ +
div {
+  width: 40px;
+  height: 40px;
+  background: #2BC4A2;
+  margin: 20px;
+  clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%, 30% 50%);
+  animation: move 5000ms infinite alternate ease-in-out;
+
+  offset-path: path('M20,20 C20,50 180,-10 180,20');
+}
+div:nth-child(1) {
+  offset-rotate: auto;
+}
+div:nth-child(2) {
+  offset-rotate: auto 90deg;
+}
+div:nth-child(3) {
+  offset-rotate: 30deg;
+}
+
+@keyframes move {
+  100% {
+    offset-distance: 100%;
+  }
+}
+ +

結果

+ +

{{EmbedLiveSample('Examples', '100%', '200')}}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Motion Path Level 1', '#offset-rotate-property', 'offset-rotate')}}{{Spec2('Motion Path Level 1')}}初回定義
+ +

{{cssinfo}}

+ +

ブラウザーの互換性

+ +

{{Compat("css.properties.offset-rotate")}}

-- cgit v1.2.3-54-g00ecf