- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 块级内联
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 聚焦
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - all
- CSS - inset
- CSS - isolation
- CSS - overscroll
- CSS - justify-items
- CSS - justify-self
- CSS - tab-size
- CSS - pointer-events
- CSS - place-content
- CSS - place-items
- CSS - place-self
- CSS - max-block-size
- CSS - min-block-size
- CSS - mix-blend-mode
- CSS - max-inline-size
- CSS - min-inline-size
- CSS - offset
- CSS - accent-color
- CSS - user-select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文字效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - box-decoration-break
- CSS - caret-color
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - box-sizing
- CSS - 提示框
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特效性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - offset-rotate 属性
CSS 属性 `offset-rotate` 指定元素沿指定的 offset-path 移动时的方向。
可能的值
以下值为 `offset-rotate` 属性所接受。
auto - 使用 `offset-rotate` 属性时,默认情况下,元素会根据 offset-path 相对于正 x 轴的角度进行旋转。
<angle> - 使用提供的旋转角度作为指导,`offset-rotate` 属性以恒定的顺时针方向变换元素的旋转。
auto <angle> - 当 `auto` 后跟一个角度值时,计算出的 `auto` 值会添加到计算出的角度值。
reverse - `offset-rotate` 的 `reverse` 值使元素的旋转方向与 `auto` 相反,但方式与 `auto` 类似。这相当于 `auto 180deg`。
应用于
可变换元素
语法
offset-rotate = [ auto | reverse ] || <angle>
CSS offset-rotate - 基本示例
以下示例演示了 `offset-rotate` 属性的用法。
<html> <head> <style> .div-container { display: flex; } .div { width: 60px; height: 60px; background: #2bc4a2; margin: 20px; offset-path: path("M20,20 C20,50 180,-10 180,20"); animation: moveRotate 5s infinite linear alternate; } .div:nth-child(1) { offset-rotate: auto; } .div:nth-child(2) { offset-rotate: auto 30deg; } .div:nth-child(3) { offset-rotate: auto 45deg; } @keyframes moveRotate { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } } </style> </head> <body> <div class="div-container"> <div class="div"></div> <div class="div"></div> <div class="div"></div> </div> </body> </html>
这是另一个演示 `offset-rotate` 属性用法的示例。
<html> <head> <style> div { width: 90px; height: 90px; background: #ff6384; margin: 20px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); animation: move 6000ms infinite alternate ease-in-out; offset-path: path("M20,20 C20,50 180,-10 180,20"); } div:nth-child(1) { background-color: #2bc4a2; offset-rotate: auto; } div:nth-child(2) { background-color: #ffce56; offset-rotate: auto 45deg; } div:nth-child(3) { background-color: #36a2eb; offset-rotate: auto 90deg; } div:nth-child(4) { background-color: #eb34e5; offset-rotate: auto 120deg; } @keyframes move { 100% { offset-distance: 200%; } } </style> </head> <body> <div></div> <div></div> <div></div> <div></div> </body> </html>
广告