码迷,mamicode.com
首页 > 其他好文 > 详细

Canvas半圆

时间:2014-12-17 10:33:45      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   os   sp   java   on   

<!DOCTYPE html>
<html>
 <head>
    <meta charset="utf-8">
    <title>Canvas</title>
 </head>
 <style type="text/css">
 </style>
 <script type="text/javascript">
    function $$(id){
        return document.getElementById(id);
    }
    function pageLoad(){
        var can = $$(can);
        var cans = can.getContext(2d);
        var jindu = 2;
        cans.beginPath();
        cans.arc(60,60,50,0,jindu*Math.PI,false);
        cans.strokeStyle = #00aae8;
        cans.lineWidth = 15;
        cans.stroke();
        cans.closePath();
    }
 </script>
<body onload="pageLoad();">
    <div style="position: relative;">
        <canvas id="can" width="120px" height="60px"></canvas>
        <div style="position: absolute;top: 32px;left: 41px;font-size: 21px;font-family: ‘微软雅黑‘;">50%</div>
    </div>
</body>
</html>

 

Canvas半圆

标签:style   blog   ar   io   color   os   sp   java   on   

原文地址:http://www.cnblogs.com/shcolo/p/4168690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!