富贵资源网 Design By www.hznty.com
天正在等烟雨,而我在等你,啦啦啦,欢迎关注我的简书,今天分享的是原创的canvas仿写贝塞尔曲线方法。具体如下:
效果图:
html
<canvas id="mycanvas" width="500" height="500">您的浏览器不支持canvas</canvas>
css
canvas{ border: 1px solid black;}
js
var canvas = document.getElementById("mycanvas"); var context = canvas.getContext("2d"); var x1 = 100; var y1 = 100; var x2 = 400; var y2 = 400; draw(); function draw(){ //画半透明的线 context.beginPath(); context.moveTo(500,0); context.lineTo(0,500); context.strokeStyle = "rgba(0,0,0,0.3)"; context.lineWidth = 10; context.stroke(); //画连接线 context.beginPath(); context.moveTo(0,500); context.lineTo(x1,y1); context.lineWidth = 2; context.strokeStyle = "black"; context.stroke(); context.beginPath(); context.moveTo(500,0); context.lineTo(x2,y2); context.lineWidth = 2; context.strokeStyle = "black"; context.stroke(); //画红球 context.beginPath(); context.arc(x1,y1,10,0,Math.PI*2); context.fillStyle = "orange"; context.fill(); //画蓝球 context.beginPath(); context.arc(x2,y2,10,0,Math.PI*2); context.fillStyle = "blue"; context.fill(); //画贝塞尔曲线 context.beginPath(); context.moveTo(0,500); context.bezierCurveTo(x1,y1,x2,y2,500,0); context.lineWidth = 5; context.stroke(); } //拖动小球做动画 //判断是否拖动小球 //如果在小球上就做动画 canvas.onmousedown = function(e){ var ev = e || window.event; var x = ev.offsetX; var y = ev.offsetY; //判断是否在红球上 var dis = Math.pow((x-x1),2) + Math.pow((y-y1),2); if(dis<100){ console.log("鼠标在红球上"); canvas.onmousemove = function(e){ var ev = e || window.event; var xx = ev.offsetX; var yy = ev.offsetY; //清除画布 context.clearRect(0,0,canvas.width,canvas.height); x1 = xx; y1 = yy; //重绘制 draw(); } } //判断鼠标是否在蓝球上 var dis = Math.pow((x-x2),2) + Math.pow((y-y2),2); if(dis<100){ canvas.onmousemove = function(e){ var ev = e || window.event; var xx1 = ev.offsetX; var yy1 = ev.offsetY; //清除画布 context.clearRect(0,0,canvas.width,canvas.height); x2 = xx1; y2 = yy1; //重绘制 draw(); } } } document.onmouseup =function(){ canvas.onmousemove = " "; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。