SVG路径动画从单击按钮开始 [英] SVG path animation to begin on click of a button

查看:85
本文介绍了SVG路径动画从单击按钮开始的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个SVG路径动画,此动画目前处于无限循环中。我希望动画在单击事件触发之前是不可见的,然后一旦动画完成(一次,不是无限次),该按钮将不再起作用。

I have an SVG path animation that at the moment is on an infinite loop. I'd like the animation to be invisible until it is triggered by a click event then once the animation is complete (one time, not infinite) the button should no longer work.

我添加了一个测试按钮,但是在页面加载后,动画似乎仍然可以播放,并且按钮对此没有任何作用。

I've added a test button but the animation still seems to play as soon as the page is loaded and the button has no effect on it.

$("#button").click(function() {
  $('.dashed').toggleClass('path');
});

.dashed{
  stroke-dasharray: 10;

}
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
<path class="path" fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" d="M23.742,10.709
	c-2.305,23.611-8.81,46.563-9.021,70.829c-0.252,28.966,22.237,43.666,47.06,55.482c23.642,11.255,42.368,15.766,68.461,16.631
	c19.993,0.663,40.08,2.97,59.853-1.723c23.301-5.531,45.542-17.598,66.978-27.933c19.248-9.281,38.831-21.86,41.946-45.201
	c5.539-41.51-54.993-47.073-81.885-42.17C159.05,47.212,89.37,104.633,77.387,164.629c-5.896,29.522-4.312,60.884,12.703,86.354
	c19.17,28.697,49.512,49.927,78.596,67.591"/>

<path class="dashed" fill="none" stroke="white" stroke-width="4" stroke-linejoin="round" stroke-miterlimit="10" d="M23.742,10.709
	c-2.305,23.611-8.81,46.563-9.021,70.829c-0.252,28.966,22.237,43.666,47.06,55.482c23.642,11.255,42.368,15.766,68.461,16.631
	c19.993,0.663,40.08,2.97,59.853-1.723c23.301-5.531,45.542-17.598,66.978-27.933c19.248-9.281,38.831-21.86,41.946-45.201
	c5.539-41.51-54.993-47.073-81.885-42.17C159.05,47.212,89.37,104.633,77.387,164.629c-5.896,29.522-4.312,60.884,12.703,86.354
	c19.17,28.697,49.512,49.927,78.596,67.591"/>
</svg>


<input type="button" id="button" value="Animate" />

推荐答案

a)清空类。路径,但保持在该位置:

a) empty the class .path but keep it there:

.path { }

b)将您从 .path 中删除​​的动画属性添加到新的CSS类中

b) add the animation properties you removed from the .path into a new css class with replacing 'infinite' from the animation property to '1'.

.path-animation {
     stroke-dasharray: 1000;
     stroke-dashoffset: 1000;
     animation: dash 5s linear 1;
}

c)使用以下jquery实现所需的结果:

c) Use the following jquery to achieve the results you require:

$("#button").click(function() {
   $('.path').attr('class', 'path path-animation');
   //5 secs delay to complete the animation before removing it and disabling the button.
   setTimeout(function() {
      $('.path').attr('class', 'path');
      $("#button").attr("disabled","disabled");
   }, 5000);
});

示例代码: http://codepen.io/Nasir_T/pen/yVNxQG

这篇关于SVG路径动画从单击按钮开始的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆