实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p><b>Note:</b> This example only works in Google Chrome.</p>
6
7
<svg xmlns="https://www.w3.org/2000/svg" version="1.1">
8
  <rect x="10" y="20" width="90" height="60">
9
    <animateColor id="a1" attributeName="fill" from="red" to="blue" dur="3s" />
10
  </rect>
11
  <rect x="10" y="120" width="90" height="60">
12
    <animateColor id="a2" attributeName="fill" from="blue" to="yellow" begin="a1.end" dur="3s" />
13
  </rect>
14
  <rect x="10" y="220" width="90" height="60">
15
    <animateColor id="a3" attributeName="fill" from="yellow" to="green" begin="a2.end" dur="3s" />
16
  </rect>
17
</svg>
18
19
</body>
20
</html>