mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
75a6b7ade7
Updated readme with the features that should be implemented.
40 lines
970 B
JavaScript
40 lines
970 B
JavaScript
//get cursor position relative to canvas
|
|
function getCursorPosition(e) {
|
|
var x;
|
|
var y;
|
|
|
|
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 -= canvas.offsetLeft;
|
|
y -= canvas.offsetTop;
|
|
|
|
return [x,y];
|
|
}
|
|
|
|
//get cursor position relative to canvas
|
|
function getCursorPositionRelative(e, layer) {
|
|
var x;
|
|
var y;
|
|
|
|
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 -= layer.canvas.offsetLeft;
|
|
y -= layer.canvas.offsetTop;
|
|
|
|
return [x,y];
|
|
}
|