目录

CSS offset-rotate 属性


示例

设置沿路径移动的三个 <img> 元素的旋转:

#fish1 {
  offset-rotate: auto;
}

#fish2 {
  offset-rotate: auto 90deg;
}

#fish3 {
  offset-rotate: 90deg;
}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个offset-rotate属性设置沿路径移动的动画元素的旋转。

默认值: 汽车
遗传:
可动画: 是的。阅读可动画的尝试一下
版本: CSS3
JavaScript 语法: 对象.style.offsetRotate="45deg"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
offset-rotate 56.0 79.0 72.0 Not supported 43.0


CSS 语法

offset-rotate: auto| value|initial|inherit;

属性值

Value Description
auto The element is facing the direction it moving along a path. This is default.
<angle> Specifies how much to rotate an element with an constant angle.
auto <angle> With both auto and <angle> given, the angle is added to the default rotation, in the clockwise direction.
reverse The element is rotated in the opposite direction of the default rotation.
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

更多示例

示例

使用“turn”单位而不是“deg”指定元素的旋转:

div {
  offset-rotate: 0.25turn;
}
亲自试一试 »

相关页面

HTML SVG 教程:SVG路径

CSS教程:CSS 动画

CSS偏移属性:CSS 偏移属性

CSS 偏移锚点属性:CSS Offset-anchor 属性

CSS 偏移距离属性:CSS 偏移距离属性

CSS 偏移路径属性:CSS 偏移路径属性