offset-distance

Baseline 已广泛支持

此功能已成熟,并可在多种设备和浏览器版本上运行。自 2022 年 9 月起,所有浏览器都已支持此功能。

offset-distance CSS 属性指定了元素沿 offset-path 放置的位置。

试一试

offset-distance: 0%;
offset-distance: 80%;
offset-distance: 50px;
<section class="default-example" id="default-example">
  <div class="transition-all" id="example-element"></div>
</section>
#example-element {
  width: 24px;
  height: 24px;
  background: #2bc4a2;
  offset-path: path("M-70,-40 C-70,70 70,70 70,-40");
  clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%, 30% 50%);
}

/* Provides a reference image of what path the element is following */
#default-example {
  background-position: calc(50% - 12px) calc(50% + 14px);
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-75 -45 150 140" width="150" height="140"><path d="M-70,-40 C-70,70 70,70 70,-40" fill="none" stroke="lightgrey" stroke-width="2" stroke-dasharray="4.5"/></svg>');
}

语法

css
/* Default value */
offset-distance: 0;

/* the middle of the offset-path */
offset-distance: 50%;

/* a fixed length positioned along the path */
offset-distance: 40px;

/* Global values */
offset-distance: inherit;
offset-distance: initial;
offset-distance: revert;
offset-distance: revert-layer;
offset-distance: unset;
<length-percentage>

一个长度值,指定元素沿路径(由 offset-path 定义)的距离。

100% 表示路径的总长度(当 offset-path 被定义为基本形状或 path() 时)。

正式定义

初始值0
应用于可变换元素
继承性
百分比指代总路径长度
计算值对于 <length> 则是绝对值,否则为百分比
动画类型一个长度百分比或 calc();

正式语法

offset-distance = 
<length-percentage>

<length-percentage> =
<length> |
<percentage>

示例

在动画中使用 offset-distance

CSS 运动路径中的运动方面通常来自对 offset-distance 属性的动画。如果你想让一个元素沿其完整路径进行动画,你可以定义它的 offset-path,然后设置一个将 offset-distance0% 动画到 100% 的动画。

HTML

html
<div id="motion-demo"></div>

CSS

css
#motion-demo {
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
  width: 40px;
  height: 40px;
  background: cyan;
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

结果

规范

规范
Motion Path Module Level 1
# offset-distance 属性

浏览器兼容性

另见