Created
May 3, 2018 06:10
-
-
Save fc4soda/6a4f0728061d559324f544e076e08257 to your computer and use it in GitHub Desktop.
css canvas draw ark
This file contains 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> | |
<body> | |
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;"> | |
Your browser does not support the HTML5 canvas tag.</canvas> | |
<script> | |
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); | |
ctx.lineWidth=5; | |
ctx.beginPath(); | |
ctx.arc(100, 75, 50, -0.5*Math.PI, (2*0.83-0.5) * Math.PI); | |
ctx.strokeStyle="#F9C91E"; | |
ctx.stroke(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment