为何不使用canvas.ooffsetLeft和offsetTop呢
function windowTocanvas(x,y){
var bbox = canvas.getBoundingClientRect();/* 获取canvas的包围盒对象*/
return {x:x-bbox.left,y:y-bbox.top};
}
为何不使用canvas.left和top呢,难道不能使用
function windowTocanvas(x,y){
var bbox = canvas.getBoundingClientRect();/* 获取canvas的包围盒对象*/
return {x:x-bbox.left,y:y-bbox.top};
}
为何不使用canvas.left和top呢,难道不能使用
2017-06-30
举报