【Canvas与艺术】圆形六角网格PUSH按钮

【成图】

【代码】

<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
     <title>圆形六角网格PUSH按钮 Draft1</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>
        </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){
        //sleep(100);
        window.requestAnimationFrame(animate);   
    }
}

// 舞台类
function Stage(){
    // 初始化
    this.init=function(){
        
    }

    // 更新
    this.update=function(){    
        
    }

    // 画背景
    this.paintBg=function(ctx){
        ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏    
    }

    // 画前景
    this.paintFg=function(ctx){
        // 底色
        ctx.save();
        ctx.fillStyle = "white";
        ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);
        ctx.restore();
        
        const R=210;//基准尺寸

        // 第1圈
        ctx.save();
        var r=1.00*R;
        var gnt=ctx.createRadialGradient(0,0,0,0,0,r);
        gnt.addColorStop(0,"rgb(152,152,152)");
        gnt.addColorStop(0.9,"rgb(152,152,152)");
        gnt.addColorStop(0.95,"rgb(251,251,251)");
        gnt.addColorStop(1,"rgb(255,255,255)");
        drawSolidCircle(ctx,0,0,r,gnt);
        ctx.restore();
        
        // 第2圈
        ctx.save();
        var r=0.91*R;
        drawSolidCircle(ctx,0,R/105*2,r,"rgb(154,154,154)");
        ctx.restore();    

        // 第3圈
        ctx.save();
        var r=0.90*R;
        var gnt=ctx.createLinearGradient(0,-r,0,r);
        gnt.addColorStop(0,"rgb(255,255,255)");
        gnt.addColorStop(0.25,"rgb(196,188,185)");
        gnt.addColorStop(0.5,"rgb(113,105,103)");
        gnt.addColorStop(0.75,"rgb(44,40,37)");
        gnt.addColorStop(1,"rgb(5,5,5)");
        drawSolidCircle(ctx,0,0,r,gnt);
        ctx.restore();
        
        // 第4圈
        ctx.save();
        var r=0.80*R;
        var gnt=ctx.createLinearGradient(0,-r,0,r);
        gnt.addColorStop(0,"rgb(87,83,80)");
        gnt.addColorStop(0.25,"rgb(123,123,123)");
        gnt.addColorStop(0.5,"rgb(206,204,205)");
        gnt.addColorStop(0.75,"rgb(246,246,246)");
        gnt.addColorStop(1,"rgb(255,255,255)");
        drawSolidCircle(ctx,0,0,r,gnt);
        ctx.restore();    

        // 第5圈
        ctx.save();
        var r=0.76*R;
        drawSolidCircle(ctx,0,0,r,"black");
        ctx.restore();

        // 第6圈
        ctx.save();
        var r=0.76*R;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.clip();

        var gnt=ctx.createRadialGradient(0,0,0,0,0,r);
        gnt.addColorStop(0,"rgb(27,161,234)");
        gnt.addColorStop(1,"rgb(14,106,156)");
        var w=2*r;
        var h=w;
        var r=R/210*5;        
        for(var i=0;i<w/r*2/Math.sqrt(2);i++){
            for(var j=0;j<h/r/1.5;j++){
                var x=i*r*Math.sqrt(3)-w/2;
                var y=j*r*3/2-h/2;
                
                if(j%2==0){
                    x-=r;
                }
    
                drawSixgon(ctx,x,y,r);
                ctx.lineWidth=R/210*2;
                ctx.lineCap="round";
                ctx.strokeStyle=gnt;
                ctx.stroke();
            }
        }
        ctx.restore();

        // 第7圈
        ctx.save();
        var r=0.76*R;
        var gnt=ctx.createRadialGradient(0,0,0,0,0,r);
        gnt.addColorStop(0,"rgba(27,161,234,0.8)");
        gnt.addColorStop(0.5,"rgba(27,161,234,0.5)");
        gnt.addColorStop(0.75,"rgba(14,106,156,0.4)");
        gnt.addColorStop(1,"rgba(4,31,45,0.3)");
        ctx.fillStyle=gnt;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.fill();
        
        ctx.restore();

        // 文字
        ctx.save();    
        var r=R*0.76;
        ctx.textBaseline="middle";
        ctx.textAlign="center";
        ctx.font = r*0.58+"px Microsoft YaHei UI";
        ctx.fillStyle="white";
        ctx.fillText("PUSH",0,0);
        ctx.restore();

        
                
        writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火制图","8px consolas","lightgrey");// 版权
    }
}

// 绘制尖朝上的正六边形,是drawPolygon的套娃函数
function drawSixgon(ctx,x,y,r){
    ctx.save();
    ctx.translate(x,y);
    ctx.rotate(Math.PI/2);
    drawPolygon(ctx,6,0,0,r);
    ctx.restore();
}

/*----------------------------------------------------------
函数:绘制正多边形
n:正多边形的边数
x:正多边形中心的横坐标
y:正多边形中心的纵坐标
r:正多边形中心到顶点的距离
----------------------------------------------------------*/
function drawPolygon(ctx,n,x,y,r){
    var polyArr=[];
    for(var i=0;i<n;i++){
        var theta=Math.PI*2/n*i;
        var pt={};
        pt.x=r*Math.cos(theta)+x;
        pt.y=r*Math.sin(theta)+y;
        polyArr.push(pt);
    }

    ctx.beginPath();
    for(let i=0;i<polyArr.length;i++){
        ctx.lineTo(polyArr[i].x,polyArr[i].y);
    }
    ctx.closePath();
}

/*----------------------------------------------------------
函数:用于绘制圆角矩形
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
width:矩形宽
height:矩形高
radius:圆角半径
----------------------------------------------------------*/
function drawRoundRect(ctx,x,y,width,height,radius){
    ctx.beginPath();
    ctx.moveTo(x-width/2+radius,y-height/2);
    ctx.lineTo(x+width/2-radius,y-height/2);
    ctx.arcTo(x+width/2,y-height/2,x+width/2,y-height/2+radius,radius);
    ctx.lineTo(x+width/2,y-height/2+radius);
    ctx.lineTo(x+width/2,y+height/2-radius);
    ctx.arcTo(x+width/2,y+height/2,x+width/2-radius,y+height/2,radius);
    ctx.lineTo(x+width/2-radius,y+height/2);
    ctx.lineTo(x-width/2+radius,y+height/2);
    ctx.arcTo(x-width/2,y+height/2,x-width/2,y+height/2-radius,radius);
    ctx.lineTo(x-width/2,y+height/2-radius);
    ctx.lineTo(x-width/2,y-height/2+radius);
    ctx.arcTo(x-width/2,y-height/2,x-width/2+radius,y-height/2,radius);
    ctx.closePath();
}

/*----------------------------------------------------------
函数:用于绘制矩形
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
width:矩形宽
height:矩形高
----------------------------------------------------------*/
function drawRect(ctx,x,y,width,height){
    ctx.beginPath();
    ctx.moveTo(x-width/2,y-height/2);
    ctx.lineTo(x+width/2,y-height/2);
    ctx.lineTo(x+width/2,y+height/2);
    ctx.lineTo(x-width/2,y+height/2);
    ctx.closePath();
}


/*----------------------------------------------------------
函数:用于绘制实心圆
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
r:圆半径
style:填充圆的方案
----------------------------------------------------------*/
function drawSolidCircle(ctx,x,y,r,style){
    ctx.fillStyle=style;
    ctx.beginPath();
    ctx.arc(x,y,r,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();
}

/*----------------------------------------------------------
函数:创建一个二维坐标点
x:横坐标
y:纵坐标
Pt即Point
----------------------------------------------------------*/
function createPt(x,y){
    var retval={};
    retval.x=x;
    retval.y=y;
    return retval;
}

/*----------------------------------------------------------
函数:延时若干毫秒
milliseconds:毫秒数
----------------------------------------------------------*/
function sleep(milliSeconds) {
    const date = Date.now();
    let currDate = null;
    while (currDate - date < milliSeconds) {
        currDate = Date.now();
    } 
}

/*----------------------------------------------------------
函数:书写文字
ctx:绘图上下文
x:横坐标
y:纵坐标
text:文字
font:字体
color:颜色
----------------------------------------------------------*/
function writeText(ctx,x,y,text,font,color){
    ctx.save();
    ctx.textBaseline="bottom";
    ctx.textAlign="center";
    ctx.font = font;
    ctx.fillStyle=color;
    ctx.fillText(text,x,y);
    ctx.restore();
}

/*-------------------------------------------------------------
韩国是真不行

发达国家吹谁都行,唯独吹韩国不行。
韩国总统整点事,群众有意见,国会也有意见,群众拦住了军车,国会
议员FQ进去投票,190:0否决了戒烟,让总统成了小丑;而且全程六
小时就解决了问题,记者还能自由报道,视频全世界都能看到,媒体人
无惧枪口正面质问军人道,你(用枪口指着国民)不觉得羞耻吗?以致
有个当兵的鞠躬道歉,现在全国总工会说总统不下台就不复工......
以上任何一个环节,明显有人肆意妄为,倒反天罡,成何体统!
韩国牛马也是吃饱了撑的,有时间多赚点钱不好吗?有时间多陪陪老婆
孩子不好吗?有时间脱个单不好?非要上街使经济停滞,给朝廷添乱?
韩国官员也是任由小民跳梁,父母官上大人的威仪何在?大韩民国能不
被北边看矮看扁了吗?!
所以说韩国是真不行!世界各国真得引以为戒!
--------------------------------------------------------------*/
//-->
</script>

END

posted @ 2016-07-30 16:01  逆火狂飙  阅读(341)  评论(0)    收藏  举报