2017-09-04 8 views
1

私は2つのsvgアニメーションを持っていて、#anim-vert-gradientの末尾に#anim-join-gradientアニメーションを開始しますが、#anim-join-gradientアニメーションが開始しません。別のアニメーションの終わりにsvgアニメーションを開始しません

#anim-join-gradient要素がbegin="anim-vert-gradient.end"

.box1{width:25px}
<div class="box box1"> 
 
    <svg viewbox="0 0 100 100"> 
 
    <path id="button" class="arrow" d="M 50,0 L 60,10 L 20,50 L 60,90 L 50,100 L 0,50 Z" /> 
 
    </svg> 
 
</div> 
 

 
<svg id="play-vert-line" width="110" height="110"> 
 
\t \t \t \t \t \t \t \t <defs> 
 
\t \t \t \t \t \t \t \t <linearGradient id="vert-gradient" gradientUnits="userSpaceOnUse" y1="0%" y2="100%" x1="0" x2="0"> 
 
\t \t \t \t \t \t \t \t \t <stop stop-color="#1689fb"></stop> 
 
\t \t \t \t \t \t \t \t \t <stop stop-color="#7e7e7e"></stop> 
 
\t \t \t \t \t \t \t \t \t <animate xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#vert-gradient" id="anim-vert-gradient" attributeName="y1" dur="800ms" to="99%" begin="button.click" fill="freeze"></animate> 
 
\t \t \t \t \t \t \t \t </linearGradient> 
 
\t \t \t \t \t \t \t \t </defs> 
 
\t \t \t \t \t \t \t \t <line id="vert-line-1" x1="55.3" y1="0" x2="55.3" y2="105" stroke="url(#vert-gradient)" stroke-width="2"></line> 
 
\t \t \t \t \t \t \t </svg> 
 
<svg id="line-join" width="110" height="110"> 
 
\t \t \t \t \t \t \t \t <defs> 
 
\t \t \t \t \t \t \t \t <linearGradient id="vert-join-gradient" gradientUnits="userSpaceOnUse" y1="0%" y2="100%" x1="0" x2="0"> 
 
\t \t \t \t \t \t \t \t \t <stop stop-color="#1689fb"></stop> 
 
\t \t \t \t \t \t \t \t \t <stop stop-color="#7e7e7e"></stop> 
 
\t \t \t \t \t \t \t \t \t <animate xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#vert-join-gradient" id="anim-join-gradient" attributeName="y1" dur="400ms" from="0%" to="99%" begin="anim-vert-gradient.end" fill="freeze"></animate> 
 
\t \t \t \t \t \t \t \t </linearGradient> 
 
\t \t \t \t \t \t \t \t </defs> 
 
\t \t \t \t \t \t \t <line id="vert-line-2" x1="105" y1="0" x2="105" y2="105" stroke="url(#vert-join-gradient)" stroke-width="2"></line> 
 
\t \t \t \t \t \t \t </svg>

答えて

1

マイナス記号は、特別の属性を開始扱われる属性を持っています。エスケープされていないマイナス符号は減算演算子として扱われます。あなたがそれを望まないなら、あなたはそれらをエスケープする必要があります。

begin="anim\-vert\-gradient.end" 

これはFirefoxでも動作します。 Chromeにはバグがあり、エスケープはサポートされていません。そこで動作させたい場合は、 - 記号を削除する必要があります。

関連する問題