I'm looking to add a pulsing light animation around an SVG half circle shape that I have created.
After experimenting with CSS and Webkit, the closest I've come is achieving a pulsing light around the parent element, rather than the actual shape itself. Any insights or ideas on how to accomplish this would be greatly appreciated.
The SVG:
<svg class="pulse-button" width="234" height="256" xmlns="http://www.w3.org/2000/svg">
<g class="half-circle">>
<rect class="rect" x="-1" y="-1" width="236" height="258" id="canvas_background" fill="none"/>
<path transform="rotate(-90.53539276123047 116.5,117.59869384765625) " id="svg_6" d="m66,24.098694c55.8011,0 101,41.84254 101,93.5c0,51.65746 -45.1989,93.5 -101,93.5l0,-187z" stroke-linecap="null" stroke-linejoin="null" stroke-width="4" stroke="#000000" fill="#000000"/>
</g>
</svg>