我想用画布制作一个小画画应用程序。所以我需要在画布上找到鼠标的位置。
3 回答
杨魅力
TA贡献1811条经验 获得超6个赞
以下计算与canvas元素的鼠标位置关系:
var example = document.getElementById('example');
example.onmousemove = function(e) {
var x = e.pageX - this.offsetLeft;
var y = e.pageY - this.offsetTop;
}
在此示例中,this引用example元素,并且e是onmousemove事件。
添加回答
举报
0/150
提交
取消