0

嘿嘿,

我有这个插件: http ://plnkr.co/edit/bKzi6rU3lIXT4Nz2wkR8?p=info

    <!DOCTYPE html>

<head>
  <meta charset="utf-8">
  <link rel="stylesheet" type="text/css" href="stilovi/main.css">
  <title>Testing</title>
</head>

<body>
  <div id="avengers"></div>
</body>
<script src="snap.svg-min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://rawgit.com/julianshapiro/velocity/master/velocity.min.js"></script>
<script>
  function fetchXML(url, callback) {
    var xhr = new XMLHttpRequest();
    xhr.open('GET', url, true);
    xhr.onreadystatechange = function(evt) {
      //Do not explicitly handle errors, those should be
      //visible via console output in the browser.
      if (xhr.readyState === 4) {
        callback(xhr.responseXML);
      }
    };
    xhr.send(null);
  };

  /*var list = ["test3.svg","test.2svg"];*/
  //fetch the document
  fetchXML("test3.svg", function(newSVGDoc) {
    //import it into the current DOM
    var n = document.importNode(newSVGDoc.documentElement, true);
    document.getElementById("avengers").appendChild(n);

    var ironman = document.getElementsByTagName("polygon");

    var ironmanlist = Array.prototype.slice.call(ironman);
    /*alert(ironmanlist.length);*/
    ironmanlist.forEach(function(elem, i) {
      /*for (var index = 0; index < elem.points.length; ++index){
                    //2.test case morphing each point (not working)//
                    console.log(elem.points[index]);
                    $.Velocity(elem.points[index],{x:100,y:100},{duration:Math.floor(Math.random() * (3000 - 1000 + 1)) + 1000}, "ease-in-out");
                    //3.test case morphing each point in another way (not working)//
                    /*$(elem.points[index])
                        .velocity({x:100,y:100},{duration:Math.floor(Math.random() * (3000 - 1000 + 1)) + 1000}, "ease-in-out");
                    console.log(elem.points[index]);
                }*/
      //1. working test case (translation)//
      console.log(elem.points[0].x);
      $.Velocity(elem, {
        translateX: -300
      }, {
        duration: Math.floor(Math.random() * (3000 - 1000 + 1)) + 1000
      }, "ease-in-out");
      //$.Velocity(elem,{rotateZ:"45deg"},{duration:Math.floor(Math.random() * (3000 - 1000 + 1)) + 1000}, "ease-in-out");
      console.log(elem.points[0].x);
      //End of 1. working test case//
    });
    console.log(ironmanlist);


  });
</script>

</html>

用我的代码和一些例子。我想要做的是将一个 SVG 图像中的每个多边形变形为另一个 SVG 图像中的另一个多边形。翻译有效,但我不确定如何进行变形。谁能帮忙,或者检查代码并告诉我我做错了什么?有很多多边形,我需要它很快,所以我为此选择了velocity.js。

我也在考虑将其全部移至three.js,并可能将其转换为最适合与three.js 一起使用的格式。但是,如果可以将其用作 svg 并保持出色的性能,我会这样做。

4

1 回答 1

0

据我所知,velocity.js 不支持这一点(取自他们的网站):

通常,Velocity 可以为任何采用单个数值的属性设置动画。

由于 SVG 路径通常(总是?)由多个值组成,因此变形远远超出了它们当前的范围。

但是,我强烈推荐使用Snap来变形 SVG 路径。

于 2016-04-23T12:08:56.673 回答