【关键点】
圆弧圆心的定位和起止角度。
【成果图】
【代码】
<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
<title>安布雷拉Umbrella伞公司标志</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="125.png" style="display:none;"/>
</div>
</body>
</html>
<script type="text/javascript">
<!--
/*****************************************************************
* 将全体代码(从<!DOCTYPE到script>)拷贝下来,粘贴到文本编辑器中,
* 另存为.html文件,再用chrome浏览器打开,就能看到实现效果。
******************************************************************/
// canvas的绘图环境
var ctx;
// 高宽
const WIDTH=512;
const HEIGHT=512;
// 舞台对象
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="black";
ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);
// 八片红白相间伞叶
const radius=200;
for(var i=0;i<8;i++){
var start=i*Math.PI/4+Math.PI/8;
var ptStart=createPt(radius*Math.cos(start),radius*Math.sin(start));
var end=start+Math.PI/4;
var ptEnd=createPt(radius*Math.cos(end),radius*Math.sin(end));
var ptArc=createPt(ptStart.x+ptEnd.x,ptStart.y+ptEnd.y);
ctx.beginPath();
ctx.moveTo(0,0);
ctx.lineTo(ptStart.x,ptStart.y);
ctx.arc(ptArc.x,ptArc.y,radius,end-Math.PI,start-Math.PI,true);
ctx.closePath();
ctx.fillStyle=(i%2==1)?"red":"white";
ctx.fill();
}
// 八条伞骨黑道道
for(var i=0;i<4;i++){
var start=i*Math.PI/4+Math.PI/8;
var pt=createPt(radius*Math.cos(start),radius*Math.sin(start));
ctx.beginPath();
ctx.moveTo(pt.x,pt.y);
ctx.lineTo(-pt.x,-pt.y);
ctx.lineWidth=10;
ctx.strokeStyle="black";
ctx.stroke();
}
// 版权
ctx.textBaseline="bottom";
ctx.textAlign="center";
ctx.font = "8px consolas";
ctx.fillStyle="white";
ctx.fillText("逆火原创",WIDTH/2-40,HEIGHT/2-10);
}
// 画前景
this.paintFg=function(ctx){
}
}
// 函数,创建一个二维坐标点
function createPt(x,y){
var retval={};
retval.x=x;
retval.y=y;
return retval;
}
/*---------------------------------------------
苏联式悖论
苏联官方的意识形态是共产主义集体主义,因此反对
干部个人腐败。但同时,国家制度却极力保护统治集团
的既得利益和各种特权。这种制度无时无刻地诱发人的
私欲,导致人性和党性互相煎熬。这就是苏联式悖论。
----------------------------------------------*/
//-->
</script>