html5 canvas画圆,html5 canvas 自动画圆

/**

* Created by Pretender on 2015/7/24.

*/

;(function($){

var leftVal;

var topVal;

var mousePos;

var step;

var start;

var end,add = Math.PI*2/180;

var n = 180;

var vName;

var radius;

var cvs = document.getElementById("mycanvas");

if(cvs == null) return false;

var ctx = cvs.getContext("2d");

ctx.lineWidth = 1.0;

//获取鼠标位置

function mouseCoords(ev)

{

if(ev.pageX || ev.pageY){

return {

x:ev.pageX, y:ev.pageY

};

}

return {

x:ev.clientX + document.body.scrollLeft - document.body.clientLeft,

y:ev.clientY + document.body.scrollTop - document.body.clientTop

};

}

function drawCircle(){

start = 0;

step = 1;

ctx.strokeStyle ='#'+('00000'+(Math.random()*0x1000000<<0).toString(16)).slice(-6);

radius = Math.floor(Math.random()*50+50);

vName= setInterval(animation, 30);

}

var animation = function () {

if (step <= n) {

end = start + add ;

drawArc(start, end);

start = end;

step++;

} else {

clearInterval(vName);

}

};

function drawArc(s, e) {

ctx.beginPath();

ctx.arc(leftVal, topVal, radius, s, e, false);

ctx.lineWidth = 1.0;

ctx.stroke();

}

$(document).bind("click",function(event){

mousePos = mouseCoords(event);

leftVal = mousePos.x;

topVal = mousePos.y;

drawCircle();

});

})(jQuery)

html>

canvas画圆
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值