真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

canvas怎么在html5中使用-創(chuàng)新互聯(lián)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)canvas怎么在html5 中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

成都創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),吳堡網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:吳堡等地區(qū)。吳堡做網(wǎng)站價(jià)格咨詢:028-86922220



 
 HTML5示例
 
  #container{border:1px solid #ccc;width:800px;height:600px;position:relative;}
  canvas{position:absolute;top:0px;left:0px;z-index:1;}
 


 
  鉛筆
  直線
  矩形
  圓形
  橢圓
 
 
 
 
 
    var canvas = document.getElementById('canvas');  var context  = canvas.getContext('2d');    var _canvas = document.getElementById('canvas_temp');  var _context  = _canvas.getContext('2d');  var tools= document.getElementById('tools');    tools.onchange = function (e){     tool[this.value]();  };  var tool = {   pen:function (){    this.reset();    _canvas.onmousedown=function (e){     _context.moveTo(e.layerX,e.layerY);     _canvas.onmousemove=function (e){      _context.lineTo(e.layerX,e.layerY);      _context.stroke();     };     _canvas.onmouseup=function (e){      _canvas.onmousemove=null;      _canvas.onmouseup=null;      tool.updata();     };    };   },   line:function (){    this.reset();    _canvas.onmousedown=function (e){     var _e = e;         _canvas.onmousemove=function (e){       _context.clearRect(0,0,canvas.width,canvas.height);      _context.beginPath();      _context.moveTo(_e.layerX,_e.layerY);      _context.lineTo(e.layerX,e.layerY);      _context.stroke();      _context.closePath();     };      _canvas.onmouseup=function (e){      _canvas.onmousemove=null;      _canvas.onmouseup=null;      tool.updata();     };        }     },   rect:function (){    this.reset();    _canvas.onmousedown=function (e){     var _e = e;     _context.strokeStyle="#000";     _canvas.onmousemove=function (e){       _context.clearRect(0,0,canvas.width,canvas.height);      _context.strokeRect(_e.layerX,_e.layerY,e.layerX-_e.layerX,e.layerY-_e.layerY);     };     _canvas.onmouseup=function (e){      _canvas.onmousemove=null;      _canvas.onmouseup=null;      tool.updata();     };        }    },   circle:function (){    this.reset();    _canvas.onmousedown=function (e){     var _e = e;     _canvas.onmousemove=function (e){       _context.clearRect(0,0,canvas.width,canvas.height);      _context.beginPath();      _context.arc(_e.layerX,_e.layerY,e.layerX-_e.layerX,0,Math.PI*2,true);      _context.stroke();      _context.closePath();     };     _canvas.onmouseup=function (e){      _canvas.onmousemove=null;      _canvas.onmouseup=null;      tool.updata();     };        }    },   ellipse:function (){    this.reset();    _canvas.onmousedown=function (e){     var _e = e;         _canvas.onmousemove=function (e){      var st=0;      _context.clearRect(0,0,canvas.width,canvas.height);      _context.beginPath();      _context.moveTo(_e.layerX+(e.layerX-_e.layerX)*Math.cos(st), _e.layerY+(e.layerX-_e.layerX)*Math.sin(st));      st+=1/180*Math.PI;           for(var i=0;i<360;i++){       _context.lineTo(_e.layerX+(e.layerX-_e.layerX)*Math.cos(st),_e.layerY+(e.layerY-_e.layerY)*Math.sin(st));       st+=1/180*Math.PI;      }      _context.stroke();      _context.closePath();     };     _canvas.onmouseup=function (e){      _canvas.onmousemove=null;      _canvas.onmouseup=null;      tool.updata();     };        }      },   reset:function (){    _canvas.onmousedown=null;    _canvas.onmouseup=null;    _canvas.onmousemove=null;   },   updata:function (){     context.drawImage(_canvas, 0, 0);    _context.clearRect(0, 0, canvas.width, canvas.height);   }  };  tool['pen']();   

上述就是小編為大家分享的canvas怎么在html5 中使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文標(biāo)題:canvas怎么在html5中使用-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/dhgsgg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部