<svg xmlns="http://www.w3.org/2000/svg" xml:lang="zh-CN" height="320px" width="140px">
  <title>SVG - 红绿灯</title>
  <rect x="20" y="20" width="100" height="280" fill="blue" stroke="black" stroke-width="3" />
  <g stroke="black" stroke-width="2">
    <circle cx="70" cy="80" r="30" fill="red">
      <animate attributeName="opacity" values="1;0;0;1" dur="3s" repeatCount="indefinite" />
    </circle>

    <circle cx="70" cy="160" r="30" fill="yellow">
      <animate attributeName="opacity" values="1;0;0;1" dur="3s" repeatCount="indefinite" begin="1s" />
    </circle>

    <circle cx="70" cy="240" r="30" fill="#40CC40">
      <animate attributeName="opacity" values="1;0;0;1" dur="3s" repeatCount="indefinite" begin="2s" />
    </circle>
  </g>
</svg>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.