企业400电话
微网小程序
AI电话机器人
电商代运营
全 部 栏 目
企业400电话
网络优化推广
AI电话机器人
呼叫中心
网站建设
商标✡知产
微网小程序
电商运营
彩铃•短信
增值拓展业务
html5 canvas 简单画板实现代码
效果图:
注:下面的代码运行效果,请在支持html5浏览下执行,才能看到效果。
<!doctype html> <html> <head> <title>canvas简单画板</title> <style type="text/css"> #can{ width:600px; height:500px; border:1px solid #ccc; margin-top:0px; margin-left:20px;} </style> </head> <body> <h2 style="padding-left:20px">canvas简单画板</h2> <canvas id="can" width="600" height="500"></canvas> <script type="text/javascript"> function getBodyOffsetTop(el){ var top = 0; do{ top = top + el.offsetTop; }while(el = el.offsetParent); return top; } function getBodyOffsetLeft(el){ var left = 0; do{ left = left + el.offsetLeft; }while(el = el.offsetParent); return left; } function Drawing(canvas,options){ typeof canvas == 'string' && (canvas = document.getElementById(canvas)); if(!canvas || !canvas.getContext){ throw new Error(100,'do not support canvas!'); } this.option = { colors:['#000000','#ff0000','#00ff00','#0000ff','#00ffff','#7fef02','#4488bb'] }; this.setOption(options); this.init(canvas); } Drawing.prototype = { setOption:function(options){ typeof options == 'object' || (options = {}); for(var i in options){ switch(i){ case 'colors': this.option[i] = options[i]; break; } } }, init:function(canvas){ this.canvas = canvas; this.context = canvas.getContext('2d'); this.context.lineWidth = 1; this.context.lineJons = 'round'; this.context.lineCep = 'round'; this.isButtonDown = false; this.historyStroker = []; this.curStroker = {color:'#000000',path:[]}; this.lastX = 0; this.lastY = 0; this.curColor = '#000000'; this.toolbarspos ={}; this.bindEvent(); this.ResetDrawToolbar(); }, bindEvent:function(){ var self = this; this.canvas.addEventListener('mousemove',function(event){ var x = event.pageX-getBodyOffsetLeft(this), y = event.pageY-getBodyOffsetTop(this); self.onMouseMove({x:x,y:y}); },false); this.canvas.addEventListener('mousedown',function(event){ var x = event.pageX-getBodyOffsetLeft(this), y = event.pageY-getBodyOffsetTop(this); self.onMouseDown(event,{x:x,y:y}); },false); this.canvas.addEventListener('mouseup',function(event){ var x = event.pageX-getBodyOffsetLeft(this), y = event.pageY-getBodyOffsetTop(this); self.onMouseUp(event,{x:x,y:y}); },false); this.canvas.addEventListener('click',function(event){ var x = event.pageX-getBodyOffsetLeft(this), y = event.pageY-getBodyOffsetTop(this); self.onClick({x:x,y:y}); },false); }, onMouseMove:function(pos){ if(this.isButtonDown){ var p = this.toolbarspos; for(var i in p){ if(pos.x >= p[i].x && pos.x <= p[i].x+p[i].w && pos.y >= p[i].y && pos.y <= p[i].y+p[i].h){ return; } } this.context.lineTo(pos.x,pos.y); this.context.stroke(); this.lastX = pos.x; this.lastY = pos.y; this.curStroker.path.push(pos); } }, onMouseDown:function(event,pos){ if(event.button == 0){ var p = this.toolbarspos; for(var i in p){ if(pos.x >= p[i].x && pos.x <= p[i].x+p[i].w && pos.y >= p[i].y && pos.y <= p[i].y+p[i].h){ return; } } this.isButtonDown = true; this.lastX = pos.x; this.lastY = pos.y; this.context.beginPath(); this.context.moveTo(this.lastX,this.lastY); this.curStroker.color = this.curColor; this.curStroker.path.push(pos); } }, onMouseUp:function(event,pos){ if(event.button == 0){ var p = this.toolbarspos; for(var i in p){ if(pos.x >= p[i].x && pos.x <= p[i].x+p[i].w && pos.y >= p[i].y && pos.y <= p[i].y+p[i].h){ return; } } this.isButtonDown = false; this.historyStroker.push(this.curStroker); this.curStroker = {color:this.curColor,path:[]}; } }, ResetDrawAll:function(){ this.context.clearRect(0,0,500,500); this.ResetDrawCentre(); this.ResetDrawToolbar(); }, ResetDrawCentre:function(){ var p = this.historyStroker,p2, curColor = this.context.strokeStyle; for(var i=0; i< p.length;i++){ this.context.strokeStyle = p[i].color; this.context.beginPath(); for(var t=0; t<p[i].path.length;t++){ p2 = p[i].path[t]; if(t==0) this.context.moveTo(p2.x,p2.y); this.context.lineTo(p2.x,p2.y); this.context.stroke(); } this.context.beginPath(); } this.context.strokeStyle = curColor; }, ResetDrawToolbar:function(){ var curcolor = this.context.fillStyle; for(var i=0; i<this.option.colors.length;i++){ this.context.fillStyle = this.option.colors[i]; if(this.curColor == this.context.fillStyle){ this.context.fillRect(i*35+5,2,30,20); this.toolbarspos[i] ={x:i*35+5,y:2,w:30,h:20}; }else{ this.context.fillRect(i*35+5,5,30,20); this.toolbarspos[i] = {x:i*35+5,y:5,w:30,h:20}; } this.context.stroke(); } this.context.fillStyle = curcolor; }, onClick:function(pos){ var p = this.toolbarspos; for(var i in p){ if(pos.x >= p[i].x && pos.x <= p[i].x+p[i].w && pos.y >= p[i].y && pos.y <= p[i].y+p[i].h){ this.curColor = this.option.colors[i]; this.context.strokeStyle = this.curColor; this.ResetDrawAll(); } } } }; new Drawing('can'); </script></body> </html>
提示:您可以先修改部分代码再运行
上一篇:
整理的15个非常有用的 HTML5 开发教程和速查手册
下一篇:
Html5新标签解释及用法
相关文章
html5 canvas 简单画板实现代码
效果图: 注:下面的代码运行效果,请在支持html5浏览下执行,才能看到效果。 !doctype html html head titlecanvas简单画板/title style type=\"text/css\" #can{ width:600px; height:500px; border:1px solid #ccc; marhtml5,canvas,简单,画板,实现,...
商标侵权法定赔偿模式
所谓法定赔偿,狭义上讲是指法律直接规定确定的赔偿数额,法官没有丝毫自由裁决的余...
抚顺电销卡无限打电话
抚顺电销卡无限打电话 电销卡就是专门用来打电销电话的! 一般来说,电销公司、电...
新余电话机器人专卖店(江西电话机器人)
本文目录一览:1、电话机器人在哪里买2、北京联想所有专卖店的地址3、哪里有电话机...
2018年电话机器人排名(电话机器人哪个最好)
今天给各位分享2018年电话机器人排名的知识,其中也会对电话机器人哪个最好进行解释...
电销外呼软件怎么样(电话销售外呼系统有效果吗)
本文目录一览: 1、电销外呼软件2、外呼体系怎么样?3、电销外呼体系哪个最好用电销...
适合汽车行业的全渠道客服系统解决方案
对于汽车行业来讲,客户体验很大程度上影响着消费者选择,合力亿捷全渠道客服系统...
武汉400电话怎么申请 费用武汉400电话办理
武汉企业申请400电话,可以直接找一家靠谱的服务商进行申请,直接在网上即可办理,...
现在的电销行业为什么这么难做
现在的电销行业为什么这么难做 不知道你们做教育行业的是怎么样的,我有个朋友他是...
工信部:70年我国固定电话用户增长836倍
“今天发布会的地点就是北京的电报大楼,这座大楼见证了70年来各式各样的通信技术...
广通云呼叫中心解决解决教育类企业的困惑
近日,笔者走访了多家中型教育企业,发现教育类企业在信息化建设方面较为完善,绝...
腾讯CEO马化腾自曝过年发红包数目:猜猜有多少?
今日晚间,腾讯董事会主席、CEO马化腾参加了媒体见面会,就两会提案和移动互联网的...
六、访问CGI变量
6.1 CGI变量概述 如果你是从传统的CGI编程转而学习Java Servlet,或许已经习惯了“CGI变量...
沈阳语音外呼系统平台(沈阳语音外呼系统平台
本文目录一览:1、网络电话外呼体系哪个好?2、哪些电话电话外呼体系比较好,功用...
做电销的电话卡怎么办(电销让自己办电话卡 对自己有
本篇文章给大家谈谈做电销的电话卡怎么办,以及电销让自己办电话卡 对自己有影响吗...
漳州市好用随意打电销卡便宜
7月30日消息,昨天,北京市第十五届人大会第二十三次会议审议《北京市2020年国民经济...
html5 canvas 简单画板实现代码
效果图: 注:下面的代码运行效果,请在支持html5浏览下执行,才能看到效果。 !doctype html html head titlecanvas简单画板/title style type=\"text/css\" #can{ width:600px; height:500px; border:1px solid #ccc; marhtml5,canvas,简单,画板,实现,...
咨 询 客 服