SVG radial-wipe animation using CSS3/JS
问题 How can i achieve a radial wipe animation in CSS3 or JS? It's seems so simple but I can't figure it out. 回答1: Here's a basic way of doing it using jQuery. There may be plug-ins available that would simplify this. JSFiddle Demo HTML <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <!-- 0 degrees arc --> <path d="M100,100 v-100 a100,100 0 0,1 0,0 z" id="circle-wipe" fill="#999" stroke-width="0" /> </svg> CSS svg { width: 200px; height: 200px; }