2016-07-07 118 views
0

我在SVG中使用jQuery動畫功能切換,但適用於我的「圓圈」SVG元素的「cs」屬性。jQuery動畫功能只能工作一次

$('#filtres-reglages ul li label input:checkbox').click(function (e) { 
    var oswitch = $(this).parent().find("svg#switch"); 
    var path = oswitch.find("path"); 
    var circle = oswitch.find("circle"); 

    if($(this).is(':checked')) { 
     $(circle).animate(
      {'foo':20}, 
      { 
       step: function(foo) { 
        $(this).attr('cx', 10+foo); 
       }, 
       duration: 200 
      } 
     ); 
    } else { 
     $(circle).animate(
      {'foo':20}, 
      { 
       step: function(foo) { 
        $(this).attr('cx', 30-foo); 
       }, 
       duration: 200 
      } 
     ); 

    } 
}); 

HTML:

<label> 
    <svg id="switch" class="switch-off" xml:space="preserve" enable-background="new 0 0 40 20" viewBox="0 0 40 20" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1"> 
     <g> 
      <g> 
       <path d="M30,0L30,0L30,0H10C4.5,0,0,4.5,0,10c0,5.5,4.5,10,10,10h20l0,0h0c5.5,0,10-4.5,10-10C40,4.5,35.5,0,30,0z " fill="#CCCCCC"> 
      </g> 
      <g> 
       <circle r="8" cy="10" cx="10" fill="#FFFFFF"> 
      </g> 
     </g> 
    </svg> 
    <input type="checkbox" name="champs_societes[]" value="capital_int"> 
    <span>Capital</span> 
</label> 

當我的複選框被選中我增加CX,當沒有被選中,我遞減。

但漸進式動畫只在第一次工作。之後,交換機直接從30到10,從10到30.爲什麼?

感謝您的幫助

+0

請添加最少的工作示例你的問題。 –

回答

1

你想要做的就是再次動畫FOO從0到20,然後回到0。

你實際上做的是從0到20,然後到20,但是在第二部分你從30減去了值,所以你實際上只是在一個動畫步驟中從20跳到(30-20)。

這裏是你應該做的事情是什麼:

$('label input:checkbox').click(function (e) { 
 
    var oswitch = $(this).parent().find("svg#switch"); 
 
    var path = oswitch.find("path"); 
 
    var circle = oswitch.find("circle"); 
 

 
    if($(this).is(':checked')) { 
 
     $(circle).animate(
 
      {'foo':20}, 
 
      { 
 
       step: function(foo) { 
 
        $(this).attr('cx', 10+foo); 
 
       }, 
 
       duration: 200 
 
      } 
 
     ); 
 
    } else { 
 
     $(circle).animate(
 
      {'foo':0}, 
 
      { 
 
       step: function(foo) { 
 
        $(this).attr('cx', 10+foo); 
 
       }, 
 
       duration: 200 
 
      } 
 
     ); 
 

 
    } 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<label> 
 
    <svg id="switch" class="switch-off" xml:space="preserve" enable-background="new 0 0 40 20" viewBox="0 0 40 20" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1"> 
 
     <g> 
 
      <g> 
 
       <path d="M30,0L30,0L30,0H10C4.5,0,0,4.5,0,10c0,5.5,4.5,10,10,10h20l0,0h0c5.5,0,10-4.5,10-10C40,4.5,35.5,0,30,0z " fill="#CCCCCC"/> 
 
      </g> 
 
      <g> 
 
       <circle r="8" cy="10" cx="10" fill="#FFFFFF"/> 
 
      </g> 
 
     </g> 
 
    </svg> 
 
    <input type="checkbox" name="champs_societes[]" value="capital_int"> 
 
    <span>Capital</span> 
 
</label>

+0

鎳@保羅,非常感謝! – Macbernie