码迷,mamicode.com
首页 > Web开发 > 详细

HTML5 Canvas 绘制五角星

时间:2017-09-02 19:53:03      阅读:778      评论:0      收藏:0      [点我收藏+]

标签:type   height   blog   logs   etc   idt   浏览器   can   div   

技术分享

代码:

<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
     <title>五角星</title>
    </head>

     <body onload="draw()">
        <canvas id="myCanvus" width="200px" height="200px" style="border:0px dashed black;">
            出现文字表示你的浏览器不支持HTML5
        </canvas>
     </body>
</html>
<script type="text/javascript">
<!--
    function draw(){
        var canvas=document.getElementById("myCanvus");
        var context=canvas.getContext("2d");

        context.fillStyle = "yellow";
        context.fillRect(0, 0, 200, 200);

        context.strokeStyle = "rgb(250,0,0)";
        context.fillStyle = "rgb(250,0,0)"

        context.beginPath();
        context.moveTo(100, 0);
        context.lineTo(100+Math.cos(Math.PI*3/10)*100, 100+Math.sin(Math.PI*3/10)*100);
        context.lineTo(100-Math.cos(Math.PI*1/10)*100, 100-Math.sin(Math.PI*1/10)*100);
        context.lineTo(100+Math.cos(Math.PI*1/10)*100, 100-Math.sin(Math.PI*1/10)*100);
        context.lineTo(100-Math.cos(Math.PI*3/10)*100, 100+Math.sin(Math.PI*3/10)*100);
        context.lineTo(100, 0);
        context.fill();
        context.stroke();
        context.closePath();
    }
//-->
</script>

 

HTML5 Canvas 绘制五角星

标签:type   height   blog   logs   etc   idt   浏览器   can   div   

原文地址:http://www.cnblogs.com/xiandedanteng/p/7467450.html

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