本文主要是介绍【Canvas与诗词】录王昌龄诗《出塞之二》匣里金刀血未干,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
【成图】
【代码】
<!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 οnlοad="init();"><div class="centerlize"><canvas id="myCanvas" width="12px" height="12px" style="border:1px dotted black;">如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.</canvas><img id="myImg" src="374.jpg" 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){//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.fillStyle = "white";ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT); // 蓝底金圈ctx.lineWidth=2;ctx.strokeStyle="gold";ctx.fillStyle="rgb(9,9,9)";ctx.beginPath();ctx.arc(0,0,245,0,Math.PI*2,false);ctx.closePath();ctx.stroke();ctx.fill();// 边纹drawGreekLoopOnmt(ctx,0,0,220,5,24,"gold","navy");// 截图圈ctx.save();var r=219;ctx.beginPath();ctx.arc(0,0,r,0,Math.PI*2,false);ctx.closePath();ctx.clip();var img=document.getElementById("myImg");ctx.drawImage(img,116,0,300,300,-r,-r,2*r,2*r);ctx.restore();// 圆形蒙版ctx.beginPath();ctx.arc(0,0,r,0,Math.PI*2,false);ctx.closePath();ctx.fillStyle="rgba(9,9,9,0.35)";ctx.fill();// 诗正文var color="gold";writeText(ctx,0,-125,"出塞之二","32px 方正宋刻本秀楷简体",color);writeText(ctx,85,-105,"王昌龄","16px 方正宋刻本秀楷简体",color);// 诗歌正文var start=createPt(0,-50);var gap=54;writeText(ctx,start.x,start.y,"骝马新跨白玉鞍","36px 方正宋刻本秀楷简体",color);writeText(ctx,start.x,start.y+gap,"战罢沙场月色寒","36px 方正宋刻本秀楷简体",color);writeText(ctx,start.x,start.y+2*gap, "城头铁鼓声犹震","36px 方正宋刻本秀楷简体",color);writeText(ctx,start.x,start.y+3*gap,"匣里金刀血未干","36px 方正宋刻本秀楷简体",color);writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火原创","8px consolas","lightgrey");// 版权} }/*---------------------------------------------------------- 函数:用于绘制希腊回环边纹,用于圆形内外装饰 ctx:绘图上下文 x:边纹中心横坐标 y:边纹中心纵坐标 radius:边纹内半径 thickness:边纹线之间的厚度 n:边纹个数 color:填充颜色 innerColor:中心方块颜色 ----------------------------------------------------------*/ function drawGreekLoopOnmt(ctx,x,y,radius,thickness,n,color,innerColor){const R=radius;const T=thickness;const N=n;const PART=Math.PI*2/N/8;ctx.save();ctx.lineWidth=2;ctx.translate(x,y);for(var i=0;i<N;i++){var theta=Math.PI*2/N*i;var r=R;var a=createPt(r*Math.cos(theta),r*Math.sin(theta));r=R;var angle=theta+7*PART;var b=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+3*T;angle=theta+7*PART;var c=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+3*T;angle=theta+9*PART;var d=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+2*T;angle=theta+9*PART;var e=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+2*T;angle=theta+10*PART;var f=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+4*T;angle=theta+10*PART;var g=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+4*T;angle=theta+3*PART;var h=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+1*T;angle=theta+3*PART;var j=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+1*T;angle=theta+1*PART;var k=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+2*T;angle=theta+1*PART;var l=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+2*T;angle=theta+0*PART;var m=createPt(r*Math.cos(angle),r*Math.sin(angle));ctx.strokeStyle=color;ctx.beginPath();ctx.moveTo(a.x,a.y);ctx.arc(0,0,R,theta,theta+7*PART,false);ctx.lineTo(b.x,b.y);ctx.lineTo(c.x,c.y);ctx.arc(0,0,R+3*T,theta+7*PART,theta+9*PART,false);ctx.lineTo(d.x,d.y);ctx.lineTo(e.x,e.y);ctx.arc(0,0,R+2*T,theta+9*PART,theta+10*PART,false);ctx.lineTo(f.x,f.y);ctx.lineTo(g.x,g.y);ctx.arc(0,0,R+4*T,theta+10*PART,theta+3*PART,true);ctx.lineTo(j.x,j.y);ctx.arc(0,0,R+1*T,theta+3*PART,theta+1*PART,true);ctx.lineTo(k.x,k.y);ctx.lineTo(l.x,l.y);ctx.arc(0,0,R+2*T,theta+1*PART,theta+0*PART,true);ctx.lineTo(m.x,m.y);ctx.closePath();ctx.stroke();r=R+1*T;angle=theta+4*PART;var n=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+1*T;angle=theta+6*PART;var o=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+3*T;angle=theta+6*PART;var p=createPt(r*Math.cos(angle),r*Math.sin(angle));r=R+3*T;angle=theta+4*PART;var q=createPt(r*Math.cos(angle),r*Math.sin(angle));//ctx.strokeStyle=innerColor;ctx.beginPath();ctx.moveTo(n.x,n.y);ctx.arc(0,0,R+1*T,theta+4*PART,theta+6*PART,false);ctx.lineTo(o.x,o.y);ctx.lineTo(p.x,p.y);ctx.arc(0,0,R+3*T,theta+6*PART,theta+4*PART,true);ctx.lineTo(q.x,q.y);ctx.closePath();ctx.stroke();}ctx.restore(); }/*---------------------------------------------------------- 函数:用于绘制实心圆,用途是标记点以辅助作图 ctx:绘图上下文 x:矩形中心横坐标 y:矩形中心纵坐标 r:圆半径 color:填充圆的颜色 ----------------------------------------------------------*/ function drawSolidCircle(ctx,x,y,r,color){ctx.fillStyle=color;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(); }/*------------------------------------------------------------- 出塞二首 王昌龄 其一 秦时明月汉时关⑵,万里长征人未还⑶。 但使龙城飞将在⑷,不教胡马度阴山⑸。 其二 骝马新跨白玉鞍⑹,战罢沙场月色寒⑺。 城头铁鼓声犹震⑻,匣里金刀血未干⑼。 --------------------------------------------------------------*/ //--> </script>
END
这篇关于【Canvas与诗词】录王昌龄诗《出塞之二》匣里金刀血未干的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!