From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/offset-rotate/index.html | 128 ++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 files/ja/web/css/offset-rotate/index.html (limited to 'files/ja/web/css/offset-rotate/index.html') diff --git a/files/ja/web/css/offset-rotate/index.html b/files/ja/web/css/offset-rotate/index.html new file mode 100644 index 0000000000..8b0742cf80 --- /dev/null +++ b/files/ja/web/css/offset-rotate/index.html @@ -0,0 +1,128 @@ +--- +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