Created
April 13, 2020 02:28
-
-
Save hoyangtsai/f28f7b948344770e4478596d11440fad to your computer and use it in GitHub Desktop.
SVG pie animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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