时之幻想曲手游官网版
944.46MB · 2026-02-16
什么是路径动画?
随手画一条不规则的线,让元素按照这条不规则的线运动起来,这就是所谓的路径动画。
前面说过的动画都只能针对某一个 CSS 属性,要想实现路径动画可没办法,路径动画必须借助 CSS3 的 offset 相关能力。
要实现路径动画,必须用到 offset 的相关属性:
offset-anchor 指定元素的运动中心在哪个点上,默认是元素中心点。offset-distance 指定元素沿路径的运动距离,100% 表示路径总长度。offset-rotate 设置元素沿路径方向的旋转角度。offset-position 定义元素沿路径的初始位置。offset-path 指定元素运动路径。offset 简写属性,包括以上所有属性。
设置中心的位置:

设置元素在这个路径中的运动距离:

设置元素在路径上的旋转角度:

其中第一个 auto 表示让浏览器自己计算角度,第二个角度值表示在计算出来的角度基础上再旋转多少度。
说实话,没搞懂这属性的用法,虽然案例看起来属性值是有效的,但没理解到它的实际生效规则。
按照 w3c 的规范说法:如果 offset-path 属性使用的函数未指定起始位置时,则使用 offset-position 属性指定的起始位置。
看下图,虽然元素的位置变化了,但是路径动画的运动距离也跟着变化了!!真是没搞懂...

以上图片的代码:
<div class="container"> <div class="box"> <div class="item"></div> </div> <div class="box"> <div class="item"></div> </div> <div class="box"> <div class="item"></div> </div> <div class="box"> <div class="item"></div> </div></div><style>.box { margin: 20px 0; width: 400px; height: 280px; border: 2px solid rgba(255, 71, 87,0.3); position: relative;}@keyframes offset-ani { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; }}.item { offset-path: ray(50deg); animation: offset-ani 2s infinite alternate ease-in-out; width: 40px; height: 40px; background-color: rgba(255, 71, 87,0.6); /* animation-play-state: paused; */ /* 暂停动画 */ clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%, 30% 50%);}.box:nth-child(2) .item { offset-position: left 10px top 10px;}.box:nth-child(3) .item { offset-position: right bottom;}.box:nth-child(4) .item { offset-position: right 30px bottom 100px;}</style>
url() 指定 SVG 形状元素的 ID,用法 offset-path: url(#myCircle)。ray() 线段。用这东东还不如使用 transform 位移。circle() 圆形,用法:circle(6rem at 12rem 8rem),表示:圆形,半径为 6rem,圆心为 12rem 8rem。ellipse() 椭圆,用法 ellipse(40% 50% at left)。表示:椭圆,长轴为 40%,短轴为 50%,圆心为左边。polygon() 多边形,语法 polygon(x1 y1, x2 y2, x3 y3, ...)inset() 内嵌矩形,用法 inset(20px 50px 10px 0 round 50px)。表示:20px 50px 10px 0 分别表示上右下左的距离,圆角为 50px。rect() 矩形,用法 rect(50px 150px 200px 50px round 20%)。表示:矩形上边在 50px,右边在 150px,下边在 200px,左边在 50px,圆角为 20%。xywh() 矩形,用法 xywh(20px 20px 100% 100% round 10%)。表示:矩形从 20px 20px 开始,宽高为 100%,圆角为 10%。path() 路径,最为强大的一个东东,复杂的路径动画都需要使用它。
各种路径动画:

上图源码:
<svg class="defs" style="width: 0;height: 0;position: absolute;"> <defs> <clipPath id="myClip"> <path id="myClipAni" d="M10,30 A20,20,0,0,1,50,30 A20,20,0,0,1,90,30 Q90,60,50,90 Q10,60,10,30 Z" /> </clipPath> </defs></svg><div class="container"> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div> <div class="box"> <div class="item"></div> <div class="bg"></div> </div></div><style>.box { width: 300px; height: 220px; border: 2px solid rgba(255, 71, 87, 0.3); position: relative;}.bg,.svg { position: absolute; left: 0; top: 0;}.bg { width: 100%; height: 100%; background: linear-gradient(to bottom right, #ff56227e, #ff475650);}@keyframes offset-ani { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; }}.item { animation: offset-ani 2s infinite alternate ease-in-out; width: 40px; height: 40px; background-color: rgba(255, 71, 87,0.6); /* animation-play-state: paused; */ /* 暂停动画 */ clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%, 30% 50%);}.box:nth-child(1) .bg { clip-path: url("#myClip");}.box:nth-child(2) .bg { clip-path: ray(45deg);}.box:nth-child(3) .bg { clip-path: ellipse(40% 50% at left);}.box:nth-child(4) .bg { clip-path: circle(6rem at 12rem 8rem);}.box:nth-child(5) .bg { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);}.box:nth-child(6) .bg { clip-path: inset(20px 50px 10px 0 round 50px);}.box:nth-child(7) .bg { clip-path: rect(50px 150px 200px 50px round 20%);}.box:nth-child(8) .bg { clip-path: xywh(20px 20px 100px 100px round 10%);}.box:nth-child(9) .bg { clip-path: path("M15,45 A30,30,0,0,1,75,45 A30,30,0,0,1,135,45 Q135,90,75,130 Q15,90,15,45 Z");}.box:nth-child(1) .item { offset-path: url("#myClipAni");}.box:nth-child(2) .item { offset-path: ray(45deg);}.box:nth-child(3) .item { offset-path: ellipse(40% 50% at left);}.box:nth-child(4) .item { offset-path: circle(6rem at 12rem 8rem);}.box:nth-child(5) .item { offset-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);}.box:nth-child(6) .item { offset-path: inset(20px 50px 10px 0 round 50px);}.box:nth-child(7) .item { offset-path: rect(50px 150px 200px 50px round 20%);}.box:nth-child(8) .item { offset-path: xywh(20px 20px 100px 100px round 10%);}.box:nth-child(9) .item { offset-path: path("M15,45 A30,30,0,0,1,75,45 A30,30,0,0,1,135,45 Q135,90,75,130 Q15,90,15,45 Z");}</style>
这里说到的路径,使用到了 SVG 里面的相关知识,SVG 用于绘制矢量图形。
什么是矢量图形?矢量图形是由线条组成的图形,而不是由像素组成的图形,所以矢量图形在放大时,不会出现锯齿,也不会失真。
这里推荐一个网站:
此网站完全就是 PS 的在线版本,直接浏览器打开即可使用。
1、进入网站之后点击 Start using Photopea 开始使用。
2、有一个隐私选择,直接 同意并继续 即可,如果担心隐私问题,可以使用浏览器的 无痕模式 打开。
3、新建一个画布。

4、使用钢笔工具勾勒出想要的路径形状。
提示:钢笔工具在画布上按住拖动可以绘制出曲线。

5、导出 SVG 文件。

6、找到导出的 SVG ,用记事本打开,path 标签中的 d 属性就是路径的坐标值。

注意:本示例中为了看到运动路径,将 SVG 的代码也放在了代码中,实际无需 SVG 代码,仅需要 path 中的路径参数即可!
<div class="box"> <div class="item"></div> <svg class="svg" version="1.2" xmlns="http://www.w***3.org/2000/svg" viewBox="0 0 400 280" width="400" height="280"> <path stroke="#000000" fill="none" d="m52 52c0 0 54-43.9 104-17 50 26.9 61 27.1 88 1 27-26.1 72-28.9 95 16 23 44.9 41 92.1-16 94-57 1.9-28 91.1 10 50 38-41.1 38-104.9-17-108-55-3.1-176 41.1-142 93 34 51.9 92 80.1 145 67 53-13.1 33-95.9-97-61-130 34.9-65 72.1-22 70 43-2.1-38-65-65-91-27-26-72 113.1-42 96 30-17.1 6-63.9-33-89-39-25.1-83-52.9-29-56 54-3.1-47 114.1-2 112 45-2.1 67-86.9 71-101 4-14.1-124-47.9-48-54 76-6.1-34-4.9 0-22z"/> </svg></div><style>.box { width: 400px; height: 280px; border: 2px solid rgba(255, 71, 87, 0.3); position: relative;}.svg { position: absolute; left: 0; top: 0;}@keyframes offset-ani { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; }}.item { animation: offset-ani 10s infinite linear; width: 20px; height: 20px; background-color: rgba(255, 71, 87,0.6); offset-path: path("m52 52c0 0 54-43.9 104-17 50 26.9 61 27.1 88 1 27-26.1 72-28.9 95 16 23 44.9 41 92.1-16 94-57 1.9-28 91.1 10 50 38-41.1 38-104.9-17-108-55-3.1-176 41.1-142 93 34 51.9 92 80.1 145 67 53-13.1 33-95.9-97-61-130 34.9-65 72.1-22 70 43-2.1-38-65-65-91-27-26-72 113.1-42 96 30-17.1 6-63.9-33-89-39-25.1-83-52.9-29-56 54-3.1-47 114.1-2 112 45-2.1 67-86.9 71-101 4-14.1-124-47.9-48-54 76-6.1-34-4.9 0-22z");}</style>
效果:

路径动画让 CSS 在动画领域拥有了更多创造性,虽然还有一些新的特性在浏览器中的兼容不太理想,但未来可期~~
文章首发于微信公众号【前端路引】,欢迎 微信扫一扫 查看更多文章。

本文来自博客园,作者:,转载请注明原文链接: