SVG Clock
HTML
<svg id='mysvg' height="220" width="220">
<circle cx="110" cy="110" r="100" stroke="black" fill='white' stroke-width="2" />
<path stroke="#000000" d="M110,110l0,-100">
<animateTransform
attributeName="transform"
attributeType="XML"
type="rotate"
from="0 110 110"
to="360 110 110"
dur="60s"
repeatCount="indefinite" />
</path>
<path stroke="#1111ff" d="M110,110l-4,-70,4,-10, 4, 10, -4, 70" stroke-width='1', fill='#1111ff'>
<animateTransform
attributeName="transform"
attributeType="XML"
type="rotate"
from="0 110 110"
to="360 110 110"
dur="120s"
repeatCount="indefinite" />
</path>
</svg>