Css 简明教程

CSS - offset Property

CSS 简写属性 offset 使元素更容易沿特定路径移动。

  1. 它具有许多特征,共同组成偏移变换。

  2. 使用此变换,元素内部的一个指定点 ( offset-anchor ) 沿路径的各个点 ( offset-distance ) 对齐到某个路径位置 ( offset-position )。

  3. 它还允许元素按选择进行旋转 ( offset-rotate ) 以遵循路径的方向。

Constituent Properties

offset 属性是以下 CSS 属性的简写:

Possible Values

offset 简写属性接受以下值列表。

  1. offset-anchor - 定义与路径上的偏移位置对齐的元素内部的一个点。

  2. offset-path - 定义元素沿其进行动画的路径。

  3. offset-distance - 定义将元素放置在路径上的位置。

  4. offset-rotate - 可选择旋转元素以使其与路径方向对齐。

  5. auto - 所有属性都将重置为其默认值。

Applies to

可变形元素

Syntax

offset = [ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?

CSS offset - path value

以下示例演示了 offset 速记属性与路径值一起使用的用法。

<html>
<head>
<style>
    @keyframes slide {
        0% {
            offset-distance: 0%;
        }
        100% {
            offset-distance: 100%;
        }
    }
    .container {
        width: 400px;
        height: 200px;
        border: 2px solid #3498db;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        background-color: #f0f0f0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    .text {
        position: absolute;
        font-size: 28px;
        color: #3954cc;
        animation: slide 6s ease-in-out infinite alternate;
        offset: path('M 10 100 Q 50 50 90 100 T 170 100 T 250 100');
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }
</style>
</head>
<body>
<div class="container">
    <div class="text">This is Sliding Text</div>
</div>
</body>
</html>

CSS offset - path and auto value

以下示例演示了 offset 速记属性与路径和自动值一起使用的用法。

<html>
<head>
<style>
    @keyframes orbit {
        0% {
            offset-distance: 0%;
            offset-rotate: 0deg;
        }
        100% {
            offset-distance: 100%;
            offset-rotate: 360deg;
        }
    }
    #planet {
        width: 60px;
        height: 60px;
        background-color: #0000A0;
        border-radius: 50%;
        position: absolute;
        animation: orbit 6s linear infinite;
        offset: path('M 200 200 m -100, 0 a 100,100 0 1,0 200,0 a 100,100 0 1,0 -200,0') auto;
    }
    #sun {
        width: 100px;
        height: 100px;
        background-color: #ffd700;
        border-radius: 50%;
        position: absolute;
        left: 28%;
        top: 33%;
        transform: translate(-50%, -50%);
    }
</style>
</head>
<body>
<div id="sun"></div>
<div id="planet"></div>
</body>
</html>

下表列出了 offset 属性的相关属性:

Property

Description

offset-anchor

指定元素框内作为偏移路径的偏移位置。

offset-distance

指定元素的放置位置。

offset-path

指定元素在其父容器内的路径。

offset-rotate

指定元素在沿指定的偏移路径移动时的方向或方向。

link: css_offset-position.html[offset-position]

提供元素在某条路线上的起始位置。