html5 js canvas中画星星的函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html5 js canvas中画星星的函数相关的知识,希望对你有一定的参考价值。

function drawStar(cxt, x, y, outerR, innerR, rot) {
             cxt.beginPath();
             for (var i = 0; i < 5; i++) {
                 cxt.lineTo(Math.cos((18+i*72-rot)/180*Math.PI)*outerR+x,
                 -Math.sin((18+i*72-rot)/180*Math.PI)*outerR+y);
                 cxt.lineTo(Math.cos((54 + i * 72 - rot) / 180 * Math.PI) * innerR + x,
                     -Math.sin((54 + i * 72 - rot) / 180 * Math.PI) * innerR + y);
             }
             cxt.closePath();

             cxt.fillStyle = "#fb3";
             cxt.strokeStyle = "#fd5";
             cxt.lineWidth = 3;
             cxt.lineJoin = "rount";

             cxt.fill();
             cxt.stroke();
         }

 

function draw() {
             for (var i = 0; i < 200; i++) {
                 var r = Math.random() * 10 + 10;
                 var x = Math.random() * cvs.width;
                 var y = Math.random() * cvs.height;
                 var a = Math.random() * 360;
                 drawStar(context, x, y, r, r / 2.0, a);
             }
         }

 

以上是关于html5 js canvas中画星星的函数的主要内容,如果未能解决你的问题,请参考以下文章

在 Angular.js 上的 HTML5 Canvas 中的背景图像上绘制一个矩形

在html5 中把canvas标签写在<body>中 而jsp代码写在<head>中就会出错呢

通过JS实现分数对应的星星评分体现

html5 canvas大小怎么无效

Unity使用UGUI的Image在Canvas中画直线

html5 两个canvas重叠放在一个div里面,每个canvas各填充一张图片,代码怎么写?