pixel-editor/js/_getCursorPosition.js

19 lines
526 B
JavaScript
Raw Normal View History

//gets cursor position relative to canvas
2019-03-27 02:20:54 +03:00
function getCursorPosition(e) {
2020-04-04 10:41:56 +03:00
var x;
var y;
2020-09-17 17:11:00 +03:00
2020-04-04 10:41:56 +03:00
if (e.pageX != undefined && e.pageY != undefined) {
x = e.pageX;
y = e.pageY;
}
else {
x = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
y = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
}
x -= currentLayer.canvas.offsetLeft;
y -= currentLayer.canvas.offsetTop;
2020-04-04 10:41:56 +03:00
return [Math.round(x), Math.round(y)];
2020-07-21 23:30:46 +03:00
}