CSS 属性

CSS 属性 offset 使元素更容易沿着特定路径进行动画处理。

  • 它具有许多特征,这些特征共同构成了偏移变换。

  • 通过此变换,元素内的指定点 (offset-anchor)在沿路线的各个点 (offset-position) 与特定路径位置 (offset-position) 对齐" target="_blank">offset-distance)。

  • 它还允许元素有选择地旋转 (offset-rotate) 跟随路径的方向。

offset 属性

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

属性值

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

  • offset-anchor: 定义元素内与路径上的偏移位置对齐的点。

  • offset-path: 定义元素沿其移动的路径是动画的。

  • offset-distance: 定义元素沿路径放置的距离。

  • offset-rotate -可以选择旋转元素以与路径方向对齐。

  • auto: 所有属性都重置为其默认值。

适用范围

可变形元素

语法

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

CSS offset: path

下面的示例演示了 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">这是滑动文本</div>
</div>
</body>
</html> 

CSS offset: path auto

以下示例演示带有路径和自动值的偏移简写属性的用法。

<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> 

CSS offset: 相关属性

下表列出了偏移属性的相关属性:

属性描述
offset-anchor指定元素框内充当偏移量的位置
offset-distance指定元素所在位置应定位。
offset-path指定元素在其父容器内的路径。
offset-rotate指定元素沿指定偏移路径移动时的方向。
offset-position提供元素沿路线的起始位置。