使用 canvas 绘图时,指定的 div 大小一定不要超过该 div 所能获得的最大范围,否则 绘制 的点会跟实际位置发生偏离。
例如
<ht ML >
<head>
< ;m eta http-equiv="Content -t y PE " content="text/html; charset=utf-8" />
<t IT le>Untitled 1</title>
<style type="text/css">
.style1 {
font- Size: x -s mall;
}
</style>
</head>
<body >
<div style="m arg in:2%">
<div id=" test " style="width:800px;h ei ght:800px;background-color: # cbdad0d9">
<canvas id="cont ai ner" onmou SEM ove="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.offsetTo p;
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.l inet o(x, y);
context. stroke ();
}
}
function mousedown(event) {
paint = true;
console. LOG ("down")
}
function mouseup(event) {
paint = false;
console.log("up")
}
</script>
</body>
</html>
上例中可以正确的绘制线图。
如果更 改为 :
<div style="mar gin :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>
由于 canvas 所需 width 800px 无法满足,因此绘制线图时,与实际鼠标位置发生偏离。
到此这篇关于canvas 绘图时位置偏离的问题解决的 文章 就介绍到这了,更多相关canvas 绘图位置偏离内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
总结
以上是 为你收集整理的 canvas 绘图时位置偏离的问题解决 全部内容,希望文章能够帮你解决 canvas 绘图时位置偏离的问题解决 所遇到的问题。
如果觉得 网站内容还不错, 推荐好友。
查看更多关于canvas 绘图时位置偏离的问题解决的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did206104