带事件的SVG触发动画

IT技术 javascript events animation svg
2021-02-21 04:56:06

我如何触发一个 svg 动画元素以通过 javascript 与任意事件开始动画?我正在想象类似begin="mySpecialEvent",然后我可以发送mySpecialEvent并且动画将开始(如果已经播放,则再次开始)。

2个回答

这是一篇涵盖您需要的文章:http :
//dev.opera.com/articles/view/advanced-svg-animation-techniques/

编辑:链接已删除。存档副本:

简而言之:

  1. 创建<animation>withbegin="indefinite"以便它不会将动画视为从文档加载开始。您可以通过 JavaScript 或原始 SVG 源执行此操作。

  2. 调用beginElement()SVGAnimationElement实例(<animate>元素)当你准备好动画开始播放。对于您的用例,addEventListener()当您准备好时,使用标准回调来调用此方法,例如

    myAnimationElement.addEventListener('mySpecialEvent',function(){
      myAnimationElement.beginElement();
    },false);
    
@Phrogz 答案中的第一个链接已死。也许它可以用这个w3.org/TR/SVG/interact.html#SVGEvents代替
2021-04-19 04:56:06
既然不再支持 SVG 动画,我们将使用什么?
2021-04-21 04:56:06
不幸的是,不适用于 IE:“对象不支持属性或方法‘beginElement’”
2021-04-22 04:56:06
@Starwave 在 IE 中的工作很少。这是 Web 开发的一个不幸的事实。
2021-04-30 04:56:06
伟大的。事实上,简单地打电话beginElement()也能完成这项工作。
2021-05-04 04:56:06

启动 SVG 动画:

在没有 javascript 的情况下,在动画元素上使用 begin 属性 =“id.event”(没有“on”前缀)的“事件值”类型;或者

<svg xmlns="http://www.w3.org/2000/svg" width="600px" height="400px">
  <rect x="10" y="10" width="100" height="100">
    <animate attributeName="x" begin="go.click" dur="2s" from="10" to="300" fill="freeze" />
  </rect>
</svg>

<button id="go">Go</button>

(W3C 2018, "SVG Animations Level 2, Editor's Draft", https://svgwg.org/specs/animations/ ), "控制动画时间的属性", "begin" 属性, "event-value" 值类型,https://svgwg.org/specs/animations/#TimingAttributes

在 javascript 中,通过将动画元素的开始属性设置为“不定”;并从脚本调用 beginElement() ;

function go () {
  var elements = document.getElementsByTagName("animate");
  for (var i = 0; i < elements.length; i++) {
    elements[i].beginElement();
  }
}

<svg xmlns="http://www.w3.org/2000/svg" width="600px" height="400px">
  <rect x="10" y="10" width="100" height="100">
    <!-- begin="indefinite" allows us to start the animation from script -->
    <animate attributeName="x" begin="indefinite" dur="2s" from="10" to="300" fill="freeze" />
  </rect>
</svg>

<button onclick="go();">Go</button>

(W3C 2018,“SVG Animations Level 2,Editor's Draft”,https://svgwg.org/specs/animations/),“控制动画时间的属性”,“开始”属性,“不确定”值类型,https://svgwg.org/specs/animations/#TimingAttributes