Html 有没有办法在svg动画标签中赋予多个值?

Html 有没有办法在svg动画标签中赋予多个值?,html,css,svg,svg-filters,svg-animate,Html,Css,Svg,Svg Filters,Svg Animate,我试图在svg上执行一些动画操作,但我无法得到我想要的结果。有没有办法在svg上添加更多的值 <animate attributeType="CSS" attributeName="visibility" from="hidden" to="hidden" values="hidden;visible;hidden" dur="2s" repeatCount="indefinite"/> 我在values=“…”中给出了多个值,但是否有任何可能的方法可以对dur执行相同的操作

我试图在svg上执行一些动画操作,但我无法得到我想要的结果。有没有办法在svg上添加更多的值
<animate attributeType="CSS" attributeName="visibility" from="hidden"  to="hidden" values="hidden;visible;hidden" dur="2s" repeatCount="indefinite"/>


我在values=“…”中给出了多个值,但是否有任何可能的方法可以对dur执行相同的操作?我希望不同时间跨度中的每个值都能为我指明正确的方向?

使用值和关键时间

e、 g


使用值和键时间

e、 g



我想为ex 3值的每个值提供自定义duratom,因此我希望第一个值取0.8s,第二个值取1.2s,第三个值应取0.1s。您能回答吗?我想为ex 3值的每个值提供自定义duratom,因此我希望第一个值取0.8s,第二个值取1.2s,第三个值应取1.2s0.1成功了你能把它作为答案吗
<animate attributeType="CSS" attributeName="visibility" values="hidden;visible;hidden" keyTimes="0;0.4;0.6" dur="2s" repeatCount="indefinite"/>