offset-distance
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2022.
Thuộc tính offset-distance CSS chỉ định một vị trí dọc theo một offset-path để đặt phần tử.
Try it
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>');
}
Cú pháp
css
/* Giá trị mặc định */
offset-distance: 0;
/* giữa offset-path */
offset-distance: 50%;
/* độ dài cố định được đặt dọc theo đường dẫn */
offset-distance: 40px;
/* Giá trị toàn cục */
offset-distance: inherit;
offset-distance: initial;
offset-distance: revert;
offset-distance: revert-layer;
offset-distance: unset;
<length-percentage>-
Độ dài chỉ định khoảng cách phần tử dọc theo đường dẫn (được xác định bằng
offset-path).100% đại diện cho tổng độ dài của đường dẫn (khi
offset-pathđược xác định là một basic shape hoặcpath()).
Định nghĩa hình thức
| Initial value | 0 |
|---|---|
| Applies to | transformable elements |
| Inherited | no |
| Percentages | refer to the total path length |
| Computed value | for <length> the absolute value, otherwise a percentage |
| Animation type | a length, percentage or calc(); |
Cú pháp hình thức
offset-distance =
<length-percentage>
<length-percentage> =
<length> |
<percentage>
Ví dụ
>Sử dụng offset-distance trong hoạt ảnh
Khía cạnh chuyển động trong CSS Motion Path thường đến từ việc tạo hoạt ảnh cho thuộc tính offset-distance. Nếu bạn muốn tạo hoạt ảnh cho phần tử dọc theo toàn bộ đường dẫn, bạn cần xác định offset-path của nó và sau đó thiết lập hoạt ảnh lấy offset-distance từ 0% đến 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%;
}
}
Kết quả
Thông số kỹ thuật
| Specification |
|---|
| Motion Path Module Level 1> # offset-distance-property> |