京东6.18大促主会场领京享红包更优惠

 找回密码
 立即注册

QQ登录

只需一步,快速开始

canvas 绘图时位置偏离的问题解决

2024-11-2 22:18| 发布者: 2ae29| 查看: 33| 评论: 0

摘要: 使用 canvas 绘图时,指定的 div 巨细一定不要高出该 div 所能得到的最大范围,否则绘制的点会跟实际位置发生偏离。 比方 [code] <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ut

使用 canvas 绘图时,指定的 div 巨细一定不要高出该 div 所能得到的最大范围,否则绘制的点会跟实际位置发生偏离。

比方

[code] <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled 1</title> <style type="text/css"> .style1 { font-size: x-small; } </style> </head> <body > <div style="margin:2%"> <div id="test" style="width:800px;height:800px;background-color:#cbdad0d9"> <canvas id="container" onmousemove="mousemove(event)" onmousedown="mousedown()" onmouseup="mouseup()"></canvas> </div> </div> <script type="text/javascript"> var paint = false; var start = false; var canvas = document.getElementById("container"); canvas.width = 800; canvas.height = 800; var offsetY = canvas.offsetTop; var offsetX = canvas.offsetLeft; var y; var x; var context = canvas.getContext("2d"); function mousemove(e) { if (paint == true){ if (start == false){ context.moveTo(0, 0); start = true; } else { context.moveTo(x, y); } x = e.pageX - offsetX; y = e.pageY - offsetY; context.lineTo(x, y); context.stroke(); } } function mousedown(event) { paint = true; console.log("down") } function mouseup(event) { paint = false; console.log("up") } </script> </body> </html>[/code]

上例中可以正确的绘制线图。

如果更改为:

[code] <div style="margin:20%"> <div id="test" style="width:800px;height:800px;background-color:#cbdad0d9"> <canvas id="container" onmousemove="mousemove(event)" onmousedown="mousedown()" onmouseup="mouseup()"></canvas> </div> </div> [/code]

由于 canvas 所需 width 800px 无法满足,因此绘制线图时,与实际鼠标位置发生偏离。

到此这篇关于canvas 绘图时位置偏离的问题解决的文章就介绍到这了,更多相干canvas 绘图位置偏离内容请搜索脚本之家以前的文章或继续浏览下面的相干文章,渴望各人以后多多支持脚本之家!


来源:https://www.jb51.net/html5/745325.html
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
关闭

站长推荐上一条 /6 下一条

QQ|手机版|小黑屋|梦想之都-俊月星空 ( 粤ICP备18056059号 )|网站地图

GMT+8, 2025-7-2 08:54 , Processed in 0.030358 second(s), 18 queries .

Powered by Mxzdjyxk! X3.5

© 2001-2025 Discuz! Team.

返回顶部