canvas 鼠标交互

canvas 鼠标交互

 

 

获取鼠标相对于 canvas位置的方法:

 

 

 

var x=event.clientX-canvas.getBoundingClientRect().left;

 

var y=event.clientY-canvas.getBoundingClientRect().top;

 

 

 

if(context.isPointInPath(x,y)){//检测鼠标点击的位置是不是在图形中,如果是,填充为红色

 

context.fillStyle = “red”;

 

context.fill();

 

 }

 

posted @ 2016-04-08 15:22  月下小狸123  阅读(452)  评论(0编辑  收藏  举报