canvas教程

JS+canvas画一个圆锥实例代码

字号+ 作者:H5之家 来源:H5之家 2017-12-15 09:42 我要评论( )

JS+canvas画一个圆锥实例代码,以下是我们给大家分享是实例代码:htmlheadtitle我的第一个 HTML 页面/title/headbodycanvas id=


JS+canvas画一个圆锥实例代码

窗在宋代以前就是一个竖格,后来相继出现了横格、斜格及雕饰。它的功能除其最早的采光功能,更多地增加了装饰功能,早期的门窗有一个问题,就是没有玻璃。?远古时用动物毛皮遮挡窗户,后来这种方式逐渐发展为窗帘。南朝梁刘孝绰有“髣髴鉴窗帘”之句。纸张普及后北方流行用纸糊窗,宋出现半透光明瓦,材料或为片状云母矿石,或由贝壳打磨成,镶嵌于窗格上。明以后出现用羊角熬成液体制作的明瓦,南京明瓦廊为著名产地。直到我国清代光绪年间之后门窗上才普遍使用玻璃。????没有玻璃的时候,如果窗做得过大,一刮风它会破掉,所以就必须要加窗棂格,窗棂格的间距是要保证窗的强度。我们在唐代以前虽然有了纸,但是那个纸还不能大面积当窗户纸感谢邀请!8月31日银川云轨线路正式建成通车,9月1号正式运营。该项目是比亚迪全球第一个投入商业运营的云轨项目,同时也是我国第一条具有完全自主知识产权的跨座式单轨列车。它的主要车辆亮点有1、铁电池储能系统:“云轨”搭载了比亚迪全球领先的铁电池,在紧急情况下,即使车辆断电,也能通过启用储能电池继续行驶3km以上,确保乘客安全抵达车站。2、永磁轮边直驱电机:“云轨”搭载了比亚迪自主研发的永磁轮边直驱电机,电机轴直接驱动行走轮。电机采用永磁同步技术,具有体积小、重量轻、扭矩大、精度高、运行声音小以及便于维护等特点。3、轻量化车体:“云轨”采用轻型铝制车身,轻量化效果显著,扭转刚度强,使用寿命长。4、

以下是我们给大家分享是实例代码:

  这间店在佛山开了很久(店铺位置在燎原路前锋大街街口),自己每次去都是看到人气满满的。店铺是很普通装修,很多年都是老样子,店铺是半开放式,没有空调,但是没有减少人们的热情。这里有个特别之处,是服务员。防恶意抓取,请查看原文,,真格学网提供内容。

<html> <head> <title>我的第一个 HTML 页面</title> </head> <body> <canvas> </canvas> <script> const cvs =document.getElementById('cvs'); // 计算画布的宽度 const width = cvs.offsetWidth; // 计算画布的高度 const height = cvs.offsetHeight; const ctx = cvs.getContext('2d'); // 设置宽高 cvs.width = width; cvs.height = height; /** ctx:context x,y:偏移 纵横坐标 w:度 h:高 color:颜色 数组,可以把颜色提取出来方便自定义 */ var Cone = function(ctx,x,y,w,h,d,color){ ctx.save(); ctx.translate(x, y); var blockHeight=h; // 中点 var x2 = 0; var y2 = 20; var k2 = 10; var w2 = w; var h2 = h; // 递减度 var decrease = d; ctx.beginPath(); ctx.moveTo(x2+w2,y2); // 椭圆加了边框,所以加1减1 ctx.bezierCurveTo(x2+w2, y2+k2, x2-w2, y2+k2, x2-w2-1, y2); ctx.lineTo(x2-w2+decrease,y2+blockHeight); ctx.bezierCurveTo(x2-w2+decrease, y2+blockHeight+k2, x2+w2-decrease, y2+blockHeight+k2, x2+w2-decrease, y2+blockHeight); ctx.lineTo(x2+w2+1,y2); var linear = ctx.createLinearGradient(x2-w2, y2,x2+w2-decrease, y2+blockHeight); linear.addColorStop(0,color[0]); linear.addColorStop(1,color[1]); ctx.fillStyle = linear ; ctx.strokeStyle=linear ctx.fill(); //ctx.stroke(); ctx.closePath(); //画椭圆 ctx.beginPath(); ctx.moveTo(x2-w2, y2); ctx.bezierCurveTo(x2-w2, y2-k2, x2+w2, y2-k2, x2+w2, y2); ctx.bezierCurveTo(x2+w2, y2+k2, x2-w2, y2+k2, x2-w2, y2); var linear = ctx.createLinearGradient(x2-w2, y2,x2+w2-decrease, y2+blockHeight); linear.addColorStop(1,color[0]); linear.addColorStop(0,color[1]); ctx.fillStyle = linear ; ctx.strokeStyle=linear ctx.closePath(); ctx.fill(); ctx.stroke(); ctx.restore(); }; function dr(m){ const colorList =[ { color:['#76e3ff','#2895ea'], height:60 }, { color:['#17ead9','#5d7ce9'], height:30 }, { color:['#1ca5e5','#d381ff'], height:40 }, { color:['#ffa867','#ff599e'], height:70 }, { color:['#ffa6e3','#ec6a70'], height:50 }, { color:['#f9c298','#d9436a'], height:30 }, { color:['#eb767b','#9971dc'], height:30 }, { color:['#f06af9','#5983ff'], height:100 }, ]; const space = 20; let coneHeight = 0; // 间隔 const gap = 20; const x = 380; const y = 20; const angle = 30; let coneWidth=0; colorList.forEach((item)=>{ coneHeight += item.height +space; }); // 最下面的先画(层级) colorList.reverse().forEach((item,index)=>{ const decrease =Math.tan(Math.PI*angle/180)*(item.height+space); coneWidth=coneWidth + decrease; coneHeight = coneHeight-item.height - space; //圆锥 Cone(ctx,x,coneHeight ,coneWidth ,item.height,decrease,item.color); // 中点 const cX =parseInt(x)+0.5; const cY = parseInt(coneHeight + space+ item.height/2)+0.5; //文字 ctx.save(); ctx.translate(cX , cY ); ctx.textBaseline='top'; ctx.textAlign='center'; const fontSize = item.height/2>=40?40:item.height/2; ctx.font = fontSize + 'px serif'; //const textMetrics = ctx.measureText('Hello World'); ctx.fillStyle = '#ffffff'; ctx.fillText('5000',0,-fontSize/3); ctx.restore(); const xLineA =parseInt(coneWidth-decrease/2)+10; const xLine =parseInt(m+xLineA )>=x?x:m+xLineA ; //线 ctx.save(); ctx.translate(cX , cY ); ctx.setLineDash([3,2]); ctx.strokeStyle = '#a4a4a4'; ctx.beginPath(); ctx.moveTo(xLineA , 0); ctx.lineTo(xLine +20, 0); ctx.stroke(); ctx.restore(); //描述文字 ctx.save(); ctx.translate(cX , cY ); ctx.textBaseline='middle'; ctx.textAlign='left'; ctx.font = '22px serif'; //const textMetrics = ctx.measureText('Hello World'); ctx.fillStyle = '#4a4a4a'; ctx.fillText('进入收件列表2',xLine+gap ,0); ctx.restore(); //转化率文字 ctx.save(); ctx.translate(cX , cY ); ctx.textBaseline='middle'; ctx.textAlign='left'; ctx.font = '28px bold serif '; ctx.fillStyle = '#007dfd'; ctx.fillText('20%',xLine+gap ,(item.height+gap)/2 ); ctx.restore(); }); } let m=0; let gravity =10; (function drawFrame(){ window.requestAnimationFrame(drawFrame,cvs); ctx.clearRect(0,0,cvs.width,cvs.height); m += gravity; dr(m); })(); </script> </body> </html>

这是脚本之家测试后的完成图:

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评
e