SVG SMIL 轨迹 Path 动画(animateMotion)

本文介绍了一个使用SVG(可缩放矢量图形)实现动画路径的例子。通过定义特定的路径并结合animateMotion元素,实现了矩形沿指定路径移动的动画效果。此示例展示了如何设置动画属性,如duration、重复次数等。
摘要由CSDN通过智能技术生成
  • 效果

    temp.gif

  • 代码

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Document</title>
      <style>
        html,body {
          margin: 0;
          padding: 0;
          background-color: #001122;
          /* 全屏 */
          width: 100%;
          height: 100%;
          /* 清空字号,免得影响 svg */
          line-height: 0;
          font-size: 0;
        }
      </style>
    </head>
    <body>
      <!-- animateMotion
        attributeType: 标签类型
        attributeName: 需要支持动画的属性
        type: 子属性
        begin: 动画开始时机
        dur: 动画时间
        fill: freeze(停留在最后)、none(默认,回到起点)
        repeatCount: 动画次数,indefinite(无限次),默认 1
        path: 运行轨迹
        rotate: auto(自动根据轨迹调整好角度)、none(默认,固定角度)
        -->
      <!-- svg -->
      <svg width="100%" height="100%" viewBox="-400 -400 800 800">
        <!-- 需要执行动画的元素 -->
        <rect x="0" y="0" width="40" height="40" fill="rgba(0, 255, 255, 0.5)">
    
          <!-- 方式一 -->
          <!-- <animateMotion
            path="M 0 0 L 100 100 A 200 200 0 1 0 0 -100"
            dur="3s"
            rotate="auto"/> -->
    
          <!-- 方式二 -->
          <animateMotion
            dur="3s"
            rotate="auto">
            <mpath xlink:href="#motion-path"/>
          </animateMotion>
        </rect>
        <!-- 轨迹 -->
        <path id="motion-path" d="M 0 0 L 100 100 A 200 200 0 1 0 0 -100" fill="none" stroke="green"/>
      </svg>
    </body>
    </html>
    
这段代码是一个SVG动画,其中包含一个曲线路径和一个图形元素(一个笔的图标)。通过使用CSS动画,图形元素沿着路径移动,实现了路径动画的效果。 具体实现步骤如下: 1. 在SVG中创建一个<path>元素,用于描述路径。例如: ``` <path id="path" d="M 50 150 Q 100 100 150 150 T 250 150" stroke="red" stroke-width="2" fill="none" /> ``` 在这个例子中,我们创建了一个二次贝塞尔曲线,起点是(50,150),控制点是(100,100),终点是(150,150),然后通过T指令绘制了一条水平线,终点是(250,150)。 2. 在SVG中创建一个要动画的图形元素,例如: ``` <svg t="1686324790855" class="pen" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16265" width="48" height="48"> <path d="M652.624 145.904c62.256-62.272 163.2-62.272 225.472 0 62.272 62.256 62.272 163.2 0 225.472L477.808 771.664a28.8 28.8 0 0 1-10.816 6.8L242.4 857.376c-47.04 16.544-92.32-28.736-75.776-75.776l78.896-224.592c1.44-4.08 3.76-7.776 6.816-10.816L652.624 145.904z m184.752 40.72a101.84 101.84 0 0 0-144.032 0L297.696 582.272l-76.736 218.4a2.512 2.512 0 0 0-0.16 0.736c0 0.096 0 0.192 0.032 0.272a2.112 2.112 0 0 0 0.56 0.928 2.096 2.096 0 0 0 0.928 0.56c0.08 0.032 0.16 0.032 0.272 0.032 0.096 0 0.32-0.032 0.72-0.16l218.4-76.736 395.664-395.664a101.84 101.84 0 0 0 0-144z" fill="#000000" p-id="16266"></path> <path d="M610.64 199.2a28.8 28.8 0 0 1 40.736 0l173.728 173.728a28.8 28.8 0 1 1-40.736 40.736L610.64 239.936a28.8 28.8 0 0 1 0-40.72zM266.368 543.488a28.8 28.8 0 0 1 40.736 0l173.728 173.728a28.8 28.8 0 0 1-40.736 40.736L266.368 584.208a28.8 28.8 0 0 1 0-40.72z" fill="#000000" p-id="16267"></path> ``` 在这个例子中,我们创建了一个笔的图标,包含两个<path>元素。 3. 使用CSS动画,将图形元素沿着路径移动。例如: ``` .pen { transform-origin: center; animation: movePen 5s linear infinite; } @keyframes movePen { 0% { transform: translate(0, 0) rotate(0); } 100% { transform: translate(200px, 0) rotate(90deg); } } #path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: dash 5s linear infinite; } @keyframes dash { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } } ``` 在这个例子中,我们使用了两个动画:一个是将笔的图标沿着路径移动,另一个是让路径显示为动态的虚线。 在.pen类中,我们使用transform属性将笔的图标平移和旋转,实现沿着路径的动画效果。 在#path选择器中,我们使用stroke-dasharray属性和stroke-dashoffset属性,将路径的长度设置为描边虚线的长度,这样才能使虚线动态显示。然后通过CSS动画将虚线动态显示。 通过上述步骤,我们就可以实现SVG动画中的路径动画效果了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

卡尔特斯

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值