<circle id="go" cx="70" cy="70" r="40" fill="orange">
<animateColor attributeName="fill"
from="orange" to="red" repeatCount="indefinite" dur="1s"/>
</circle>
開始(from)と終了(to)を指定すると、色変えが直線的になる、オレンジから赤に
なめらかに変化するが、赤からオレンジに直ぐに切り替わってしまって、あまり
おもしろくない。特に繰り返し回数(repeatCount)を永遠(indefinite)にしておくと、
アニメは不細工に見える
<circle id="go" cx="70" cy="70" r="40" fill="orange">
<animateColor attributeName="fill" values="orange;red;orange"
repeatCount="indefinite" dur="1s"/>
</circle>
previous