Fully circular SVG circle in Chrome? Workaround

There is currently a bug in Chrome providing SVG circles, making them look like brake lights .

https://code.google.com/p/chromium/issues/detail?id=395474

Does anyone know of a temporary workaround?

Use case - pie timer animation: http://jsfiddle.net/frank_o/c62qmq1a/

<div class="svg_wrapper">
  <svg viewBox="0 0 600 425">
      <path d="M 175, 175 m 0, -75 a 75,75 0 1,0 0,150 a 75,75 0 1,0 0,-150" fill="none" stroke="black" stroke-width="110"/>
  </svg>
</div>

      

+1


source to share





All Articles