SVG动画路径的d属性

ram*_*ion 19 javascript animation svg bezier

是否可以使用SVG动画d属性<path>

我可以画一个钻石和一个圆圈作为由八条贝塞尔曲线组成的路径:

<html>
  <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
    <script>
      jQuery(function($){
        var a = 50;

        var draw = function(b, c, d, e, f){
          return [
            'M', a, 0, 

            'C', b, c, ',', d, e, ',', f, f,
            'C', e, d, ',', c, b, ',', 0, a,

            'C', -c, b, ',', -e, d, ',', -f, f,
            'C', -d, e, ',', -b, c, ',', -a, 0,

            'C', -b, -c, ',', -d, -e, ',', -f, -f,
            'C', -e, -d, ',', -c, -b, ',', 0, -a,

            'C', c, -b, ',', e, -d, ',', f, -f,
            'C', d, -e, ',', b, -c, ',', a, 0,
          ].join(' ');
        };

        $('#diamond').attr({ d: draw( 5*a/6,          a/6,                    2*a/3,         a/3,            a/2 ) });
        $('#circle' ).attr({ d: draw(     a, a*Math.PI/12, (2 + 1/Math.sqrt(2))*a/3, a*Math.PI/6, a/Math.sqrt(2) ) });
      });
    </script>
  </head>
  <body>
    <svg width="200" height="200">
      <g transform="translate(100,100)">
        <path id=diamond fill="blue" stroke="black"/>
      </g>
    </svg>
    <svg width="200" height="200">
      <g transform="translate(100,100)">
        <path id=circle fill="red" stroke="black"/>
      </g>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

我想动画从一个到另一个的转换.

我可以在javascript中模拟这个(只是通过在特定时间线性插值贝塞尔曲线参数),但我想知道是否有办法用SVG做到这一点.

(圆形和菱形只是一个例子 - 实际上我想在两个由相同数量的贝塞尔曲线组成的任意实体之间转换).

Rob*_*son 19

这是可能的.这里有很多动画d元素动画的例子:http://hoffmann.bplaced.net/svgtest/index.php?in = attributespathd包括动画bezier曲线.您应该能够针对您的特定用例调整一个.

这是没有弧标志动画的path15.大弧标志只能是0或1,因此线性动画并不是很有意义.

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="500px" height="500px" viewBox="-500 -500 1000 1000">
<path id="p1"
    d="M 100 100 A 200 400 30 1 0 600 200 a 300 100 45 0 1 -300 200"
    stroke="blue" fill="none"
    stroke-width="4" />
<animate xlink:href="#p1"
    attributeName="d"
    attributeType="XML"
    from="M 100 100 A 200 400 30 1 0 600 200 a 300 100 45 0 1 -300 200"
        to="M 300 600 A 300 400 -20 1 0 400 200 a 200 600 -50 0 1 100 400"
    dur="10s"
    fill="freeze" />


</svg>
Run Code Online (Sandbox Code Playgroud)

  • 是否可以在没有SMIL的情况下进行路径动画,因为它已被弃用且浏览器支持不良?我的意思是使用样式的动画 - 是否可能? (2认同)