Skip to content

Instantly share code, notes, and snippets.

@hoyangtsai
Created April 13, 2020 02:28
Show Gist options
  • Save hoyangtsai/f28f7b948344770e4478596d11440fad to your computer and use it in GitHub Desktop.
Save hoyangtsai/f28f7b948344770e4478596d11440fad to your computer and use it in GitHub Desktop.
SVG pie animation
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<style>
circle {
stroke-dashoffset: 100px;
/*animation: sector 1s linear;*/
}
@keyframes sector {
from { stroke-dashoffset: 630px; }
to { stroke-dashoffset: 100px; }
}
</style>
</head>
<body>
<svg width="400" height="400">
<circle transform="rotate(-90 200 200)" cx="200" cy="200" r="100" fill="transparent" stroke-width="200" stroke="#ccc" stroke-dasharray="630 630"></circle>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment