python canvas画移动物体_canvas高级篇(转载)移动元素

var list=[];varcurrentC;var _e={};var cricle =function(x,y,r){this.x=x;this.y=y;this.r=r;this.isCurrent=false;this.drawC=function(ctx,x,y){

ctx.save();

ctx.beginPath();

ctx.moveTo(this.x,this.y-this.r);

ctx.arc(this.x,this.y,this.r,2*Math.PI,0,true);if ((x && y && ctx.isPointInPath(x, y) && !currentC )||this.isCurrent) {

ctx.fillStyle= '#ff0000';

currentC=this;this.isCurrent=true;

}else{

ctx.fillStyle= '#999999';

}

ctx.fill();

}

}

function draw(){var canvas = document.getElementById('tutorial');if(canvas.getContext){var ctx = canvas.getContext('2d');for(var i=0;i<10;i++){var c=new cricle(20*i,20*i,5*i);

c.drawC(ctx);

list.push(c);

}

}

}

function reDraw(e){

e=e||event;var canvas = document.getElementById('tutorial');var x = e.clientX -canvas.offsetLeft;var y = e.clientY -canvas.offsetTop;

canvas.width=canvas.width;if(canvas.getContext){var ctx = canvas.getContext('2d');for(var i=0;i

c.drawC(ctx,x,y);

}

}

}

function show(e){

e=e||event;var canvas = document.getElementById('tutorial');var ctx = canvas.getContext('2d');var x = e.clientX -canvas.offsetLeft;var y = e.clientY -canvas.offsetTop;if(currentC){

currentC.x=parseInt(x+(x-currentC.x)/5);

currentC.y=parseInt(y+(y-currentC.y)/5);

}

_e=e;

}

window.οnlοad=function(){var canvas = document.getElementById('tutorial');

draw();

canvas.οnmοusedοwn=function(e){

e=e||event;var x = e.clientX -canvas.offsetLeft;var y = e.clientY -canvas.offsetTop;if(currentC)

currentC.isCurrent=false;

currentC=null;

reDraw(e);

_e=e;var showTimer=setInterval(function(e){

reDraw(e);

},10,_e);

canvas.οnmοusemοve=show;

document.οnmοuseup=function(){if(currentC)

currentC.isCurrent=false;

currentC=null;

canvas.οnmοusemοve=null;

clearInterval(showTimer);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值