博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
canvas绘制星空
阅读量:6757 次
发布时间:2019-06-26

本文共 1476 字,大约阅读时间需要 4 分钟。

效果图

html结构

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>canvas15</title>

<link rel="stylesheet" href="">

</head>

<body>

<canvas id="canvas" style ="border:1px solid #aaa;diplay:block;margin:50px auto;">

当前浏览器不支持canvas,请更换浏览器后再试

</canvas>

</body>

</html>

js脚本

<script>

window.onload = function(){

var canvas = document.getElementById("canvas");

canvas.width  = 800;

canvas.height = 800;

var context = canvas.getContext("2d");

// context.lineJoin = "bevel";

// context.lineJoin = "round";

// context.lineJoin = "miter";

context.fillStyle = "black";

context.fillRect(0,0,canvas.width,canvas.height);

for(var i = 0;i<200;i++){

var r = Math.random() * 10 + 10;

var x = Math.random() * canvas.width;

var y = Math.random() * canvas.height;

var a = Math.random() * 360;

drawStar(context,r/2.0,r,x,y,a,10,"#fb3","#fb3");

}

}

function drawStar(context,r,R,x,y,rot,lineWidth,strokeStyle,fillStyle){

context.beginPath();

for(var i = 0;i<5;i++){

context.lineTo(Math.cos((18+i*72 - rot)/180 * Math.PI) * R + x,-Math.sin((18+i*72 - rot)/180*Math.PI)*R + y);

context.lineTo(Math.cos((54+i*72 - rot)/180 * Math.PI) * r + x,-Math.sin((54+i*72 - rot)/180*Math.PI)*r + y);

}

context.closePath();

context.fillStyle = fillStyle;

context.strokeStyle = strokeStyle;

context.lineWidth = lineWidth;

context.lineJoin = "miter";

context.fill();

context.stroke();

}

</script>

本文转自  素颜猪  51CTO博客,原文链接:
http://blog.51cto.com/suyanzhu/1892794

转载地址:http://xczeo.baihongyu.com/

你可能感兴趣的文章
利用div实现邮件收件人的输入框
查看>>
我的友情链接
查看>>
单页布局
查看>>
我的友情链接
查看>>
综合布线详细方案设计
查看>>
rhel6.3下安装GCC4.8.1
查看>>
大图片生成缩略图 导致imagecreatefromjpeg 内存崩溃问题
查看>>
我的友情链接
查看>>
手工恢复
查看>>
二 IOC再探
查看>>
一些常用软件的网络端口协议分类介绍
查看>>
机器学习服务器 PredictionIO 脱颖而出
查看>>
mysql不能连接远程mysql服务器
查看>>
Windows 8.1 重复数据删除——概念(一)
查看>>
iptables防火墙高级应用
查看>>
python运维-Socket网络编程
查看>>
yum管理包流程_学习笔记
查看>>
DeltaGrad领跑智能化交易领域 预见收益颠覆基金行业
查看>>
nginx keepalived tomcat实现的高可用
查看>>
Https能避免流量劫持吗?
查看>>