こんにちは、次の SVG ファイルがあります。
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 150 150">
<text x="10" y="100" fill="blue" fill-opacity="1">
<tspan fill-opacity="1" >1st</tspan>
<tspan >2nd</tspan>
<animate attributeName="fill-opacity" calcMode="discrete" values="0; 1" dur="1s" repeatCount="indefinite"/>
</text>
</svg>
ご覧のとおり、animate
要素内にtext
要素があり、正常に動作します。しかし、問題はtspan
要素にあります。それらの 1 つは no fill-opacity
(アニメーションによって変更される属性) を定義し、アニメーションを継承します。fill-opacity
もう 1 つは、アニメーションによって変更されない独自のものを定義します。
animate
変更された属性に対して独自の値を定義するかどうかに関係なく、すべての子要素に影響を与える必要があることを要素に伝える方法はありますか?