我想在 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">
<rect x="10" y="10" width="100" height="100" fill="blue" stroke="red">
<animate attributeName="fill-opacity" values="0; 1" dur="1s" repeatCount="indefinite"/>
</rect>
</svg>
我希望在值 0 和 1 之间切换填充不透明度。但它的作用是从 0淡化到 1。我希望它保持 0 1 秒,然后保持 1 1 秒,回到 0 1 秒等等在。
我怎么做?我尝试了几乎所有可能的属性组合,但没有管理它。