实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p><b>Note:</b> This example only works in Firefox and Google Chrome.</p>
6
7
<svg xmlns="https://www.w3.org/2000/svg" version="1.1">
8
  <rect x="20" y="20" width="250" height="250" style="fill:blue">
9
    <animate attributeType="CSS" attributeName="opacity" from="1" to="0" dur="5s" repeatCount="indefinite" />
10
  </rect>
11
</svg>
12
13
</body>
14
</html>