<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
<title>绘制朝鲜国旗</title>
<style type="text/css">
.centerlize{
margin:0 auto;
width:1200px;
}
</style>
</head>
<body onload="init();">
<div class="centerlize">
<canvas id="myCanvas" width="12px" height="12px" style="border:1px dotted black;">
如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.
</canvas>
<img id="myImg" src="100.jpg" style="display:none;"/>
</div>
</body>
</html>
<script type="text/javascript">
<!--
/*****************************************************************
* 将全体代码(从<!DOCTYPE到script>)拷贝下来,粘贴到文本编辑器中,
* 另存为.html文件,再用chrome浏览器打开,就能看到实现效果。
******************************************************************/
// canvas的绘图环境
var ctx;
// 高宽
const WIDTH=1001;
const HEIGHT=658;
// 舞台对象
var stage;
//-------------------------------
// 初始化
//-------------------------------
function init(){
// 获得canvas对象
var canvas=document.getElementById('myCanvas');
canvas.width=WIDTH;
canvas.height=HEIGHT;
// 初始化canvas的绘图环境
ctx=canvas.getContext('2d');
ctx.translate(WIDTH/2,HEIGHT/2);// 原点平移到画布中央
// 准备
stage=new Stage();
stage.init();
// 开幕
animate();
}
// 播放动画
function animate(){
stage.update();
stage.paintBg(ctx);
stage.paintFg(ctx);
// 循环
if(true){
window.requestAnimationFrame(animate);
}
}
// 舞台类
function Stage(){
// 初始化
this.init=function(){
}
// 更新
this.update=function(){
}
// 画背景
this.paintBg=function(ctx){
// 清屏
ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);
// 白底
ctx.fillStyle="white";
ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);
// 蓝边
ctx.fillStyle="rgb(12,80,183)";
ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,100);
ctx.fillRect(-WIDTH/2,HEIGHT/2-100,WIDTH,100);
// 红底
ctx.fillStyle="rgb(254,0,0)";
ctx.fillRect(-WIDTH/2,-200,WIDTH,400);
// 白圈
ctx.arc(-180,0,160,0,Math.PI*2,false);
ctx.fillStyle="white";
ctx.fill();
// 画红五角星
draw5Star(ctx,-180,0,128,"rgb(254,0,0)");
}
// 画前景
this.paintFg=function(ctx){
}
}
// 画实心五角星的函数
function draw5Star(ctx,x,y,r,color){
ctx.save()
ctx.translate(x-r,y-r);
ctx.beginPath();
ctx.moveTo(r, 0);
ctx.lineTo(r+Math.cos(Math.PI*3/10)*r, r+Math.sin(Math.PI*3/10)*r);
ctx.lineTo(r-Math.cos(Math.PI*1/10)*r, r-Math.sin(Math.PI*1/10)*r);
ctx.lineTo(r+Math.cos(Math.PI*1/10)*r, r-Math.sin(Math.PI*1/10)*r);
ctx.lineTo(r-Math.cos(Math.PI*3/10)*r, r+Math.sin(Math.PI*3/10)*r);
ctx.lineTo(r, 0);
ctx.closePath();
ctx.fillStyle=color;
ctx.fill();
ctx.restore();
}
/*---------------------------------------------
----------------------------------------------*/
//-->
</script>