canvas画图小例子2

<!DOCTYPE>
<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="/jqplot/excanvas.min.js"></script><![endif]-->
<script type="text/javascript">
    var list=[];
    var currentC;
    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<list.length;i++){
                var c=list[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.function(){
         
        var canvas = document.getElementById('tutorial');
        draw();
         
        canvas.onmousedown=function(e){
            console.log("aaa")
            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.onmousemove=show;
 
            document.onmouseup=function(){
                if(currentC)
                    currentC.isCurrent=false;
                currentC=null;
                canvas.onmousemove=null;
                clearInterval(showTimer);
            }
 
        }
    }
</script>
<style type="text/css">
  canvas { border: 1px solid black; }
</style>
</head>
<body style="background:#eeeeee;">
    <canvas id="tutorial" width="1000" height="550" style="z-index:100;display:block;position:absolute;"></canvas>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值