加入收藏 | 设为首页 | 会员中心 | 我要投稿 焦作站长网 (https://www.0391zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

html5 canvas实现跟随鼠标旋转的箭头

发布时间:2020-03-13 11:49:13 所属栏目:MySql教程 来源:站长网
导读:这篇文章主要为大家详细介绍了html5 canvas实现跟随鼠标旋转的箭头,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

XML/HTML Code复制内容到剪贴板

<!DOCTYPE html>  

<html>  

 <head>    

  <meta charset="utf-8" />    

  <meta http-equiv="X-UA-Compatible" content="IE=edge" />    

  <title>canvas实现跟随鼠标旋转的箭头</title>    

  <style>  

    *{padding: 0;margin: 0}   

    </style>    

 </head>    

 <body>    

  <canvas width="500" height="500" style="border: 1px solid #555; display: block;margin: 0 auto;"></canvas>    

  <script>  

        var arrow=function () {   

            this.x=0;    

            this.y=0;   

            this.color="#f90"  

            this.rolation=0;   

        }    

        var canvas=document.querySelector('canvas')   

        var ctx=canvas.getContext('2d');   

        arrow.prototype.draw=function (ctx) {   

            ctx.save();   

            ctx.translate(this.x,this.y);   

            ctx.rotate(this.rolation)   

            ctx.fillStyle=this.color;   

            ctx.beginPath();   

            ctx.moveTo(0, 15);   

            ctx.lineTo(-50, 15);   

            ctx.lineTo(-50, -15);   

            ctx.lineTo(0,-15);   

            ctx.lineTo(0,-35);   

            ctx.lineTo(50,0);   

            ctx.lineTo(0,35);   

            ctx.closePath()   

            ctx.fill();   

            ctx.restore();   

        }   

        var Arrow=new arrow();   

        Arrow.x=canvas.width/2;   

        Arrow.y=canvas.height/2;   

           

        var c_x,c_y; //相对于canvas坐标的位置;   

        var isMouseDown=false;   

        Arrow.draw(ctx)   

        canvas.addEventListener('mousedown',function(e) {   

            isMouseDown=true;   

        },false)   

        canvas.addEventListener('mousemove',function(e) {   

            if(isMouseDown==true){   

(编辑:焦作站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

推荐文章
    热点阅读