html5 canvas画板
<!DOCTYPE HTML>
<html>
<title>HTML5-CanvasDrawDemo</title>
<meta charset="utf-8"/>
<body>
<style>
div {
border:0;
margin:auto;
width:500px;
} #div_head {
border:0;
} #div_head span{
font-size:10px;
}
body canvas
{
border: 2px solid blue;
border-radius:10px;
} #txt_alpha { width:20px;} #txt_width{ width:30px;}
footer {
margin:auto;
text-align:center;
font-size:10px;
}
</style>
<div id="div_head">
<fieldset>
<legend>Controller</legend>
Color:<input id='btn_color' type='color' />
Alpha:<input id="txt_alpha" type='range' min="0" max="1" step="0.1" value="1"/>
Size:
<input id='txt_width' type='range' min="1" max="10" step="1" value="4"/>
<input id="btn_pre" type='button' value="撤销"/>
<input id="btn_next" type='button' value="恢复"/>
<input id="btn_clear" type='button' value="Clear"/>
</fieldset>
</div>
<div>
<canvas id="drawgph" width="500" height="400" >
<span><font color='red'>浏览器不支持Html5中的Canvas元素!</font></span>
</canvas>
</div>
<footer>
<span>Google Chrome 版本 33.0.1750.154 m 测试通过!</span></br>
<span>IE9.0 不支持颜色选择,需手动填入颜色值,格式为“#FFFFFF”。</span></br>
<span><a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=170515071&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:170515071:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a></span></br>
<span>
<a target="_blank" href="http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=2qKzu7Wjr_-q7Oiaq6v0ubW3" style="text-decoration:none;"><img src="http://rescdn.qqmail.com/zh_CN/htmledition/images/function/qm_open/ico_mailme_12.png"/></a>
</span>
</footer>
<script type="text/javascript">
//检测浏览器版本
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
window.ActiveXObject ? Sys.ie = ua.match(/msie ([\d.]+)/)[1] :
document.getBoxObjectFor ? Sys.firefox = ua.match(/firefox\/([\d.]+)/)[1] :
window.MessageEvent && !document.getBoxObjectFor ? Sys.chrome = ua.match(/chrome\/([\d.]+)/)[1] :
window.opera ? Sys.opera = ua.match(/opera.([\d.]+)/)[1] :
window.openDatabase ? Sys.safari = ua.match(/version\/([\d.]+)/)[1] : 0; if(Sys.ie>=9){//IE9.0目前不支持type=color
document.getElementById('btn_color').value="#000000";
}
if(Sys.firefox) ver='Firefox: '+Sys.firefox;
if(Sys.chrome) ver='Chrome: '+Sys.chrome;
if(Sys.opera) ver='Opera: '+Sys.opera;
if(Sys.safari) ver='Safari: '+Sys.safari; var obj = document.getElementById('drawgph');
var ctx = obj.getContext('2d');
var start_X = 0;//起点X轴位置
var start_Y = 0;//起点Y轴位置
var isMove = false;//是否绘制图形
var history=[];//历史操作记录
var count=0;//记录当前执行的步骤数(绘制+1;撤销-1 ;恢复+1)
var colorObj=document.getElementById('btn_color');//颜色对象
var alpha=document.getElementById('txt_alpha');//透明对象
var size=document.getElementById('txt_width');//画笔宽度
obj.addEventListener("mousedown", function (e) {
start_X = e.pageX-e.target.offsetLeft;
start_Y = e.pageY-e.target.offsetTop;
//console.log('mousedown on ('+start_X+','+start_Y+')');
isMove = true;
ctx.lineWidth =size.value;
ctx.strokeStyle=colorObj.value;
ctx.globalAlpha=alpha.value;
ctx.save();
});
obj.addEventListener("mousemove", function (e) {
if (isMove) {
ctx.beginPath();
ctx.moveTo(start_X,start_Y);
ctx.lineTo(e.pageX-e.target.offsetLeft, e.pageY-e.target.offsetTop);
ctx.stroke();
start_X = e.pageX-e.target.offsetLeft;
start_Y = e.pageY-e.target.offsetTop;
}
});
obj.addEventListener("mouseup", function (e) {
ctx.restore();
//如果有产生绘图则记录操作
if(isMove){
historyLog();
}
isMove = false;
//如果在内部释放中断冒泡事件
window.event.cancelBubble=true;
});
//防止用户画笔在画布范围外释放后回到画布持续绘画状态
window.addEventListener('mouseup',function(e){
ctx.restore();
//如果有产生绘图则记录操作
if(isMove){
historyLog();
}
isMove=false; });
//首次加载时保存空白画布历史记录
window.addEventListener('load',historyLog);
//Clear按钮清除画布内容
btn_clear.onclick=function(){
//console.log("Action: btn_clear.onclick" );
ctx.clearRect(0,0,500,400);
count=0;
history=[];
historyLog();
}
//撤销
btn_pre.onclick=function(){
count--;
//console.log("撤销操作时变量Count:"+count);
if(count==0){
count++;
}
ctx.putImageData(history[count-1],0,0);
//console.log(history);
} //恢复
btn_next.onclick=function(){
//console.log("恢复操作时变量Count:"+count);
if(history[count]){
ctx.putImageData(history[count],0,0);
count++;
}
} //记录操作
function historyLog(){
//console.log("记录操作时变量Count:"+count);
history[count]=(ctx.getImageData(0,0,500,400));
count++;
//console.log(history);
} </script>
</body>
</html>
html5 canvas画板的更多相关文章
- html5 canvas 画板
<!doctype html> <head> <meta http-equiv="Content-Type" content="text/h ...
- 一款基于HTML5 Canvas的画板涂鸦动画
今天给各网友分享一款基于HTML5 Canvas的画板涂鸦动画.记得之前我们分享过一款HTML5 Canvas画板工具,可以切换不同的笔刷,功能十分强大.本文今天要再来分享一款基于HTML5 Canv ...
- 8个经典炫酷的HTML5 Canvas动画欣赏
HTML5非常强大,尤其是Canvas技术的应用,让HTML5几乎可以完成所有Flash能完成的效果.本文精选了8个经典炫酷的HTML5 Canvas动画欣赏,每一个都提供全部的源代码,希望对你有所帮 ...
- 基于HTML5 Canvas的网页画板实现教程
HTML5的功能非常强大,尤其是Canvas的应用更加广泛,Canvas画布上面不仅可以绘制任意的图形,而且可以实现多种多样的动画,甚至是一些交互式的应用,比如网页网版.这次我们要来看的就是一款基于H ...
- html5 canvas 涂鸦画板
html5 canvas 的涂鸦画板,可以加载图片进行涂鸦,也可以下载服务器使用的php上传的图片不能超过1M,只能是jpg或者png 格式的演示地址的服务器网速不怎么样,读取文件可能很慢,到达100 ...
- Atitit html5 Canvas 如何自适应屏幕大小
Atitit html5 Canvas 如何自适应屏幕大小 可以用JS监控屏幕大小,然后调整Canvas的大小.在代码中加入JS 1 2 3 4 5 6 7 $(window).resize ...
- canvas——画板
注意部分: canvas的height和width不能再css中设定,应该在html中设定,否则会影响页面的分辨率. 效果图: 图1: 代码 css: #canvas{ cursor: crossha ...
- HTML5 canvas 在线画笔绘图工具(三)
组装画板(TDrawBuilder) 在这一小节中我们要把工具条和画板组装起来,让他们可以协同进行工作. 画板通过一个命名为TDrawBuilder来进行组装.在详细讲解TDrawBuilder对象之 ...
- HTML5 canvas画图
HTML5 canvas画图 HTML5 <canvas> 标签用于绘制图像(通过脚本,通常是 JavaScript).不过,<canvas> 元素本身并没有绘制能力(它仅仅是 ...
随机推荐
- 01- 使用brew 安装ant -学习笔记(一)
1.卸载Mac OS下brew工具:ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/mast ...
- struts2 使用注解方式配置
1.导入convention 包 2.java: package com.struts.base.hello; import java.io.IOException; import java.io.P ...
- [Flex] PopUpButton系列 —— 弹出菜单的行高设置
<?xml version="1.0" encoding="utf-8"?> <!--Flex中如何通过variableRowHeight样式 ...
- [SQL]声明触发器 <待整理>
./*声明触发器 create trigger dl_stu_mess4 on student for delete as declare @name_id int select @name_id=s ...
- freemarker空值的多种处理方法
默认情况下,freemarker的变量必须有值,如果没有被赋值的变量在页面上使用就会抛出异常,出错的信息都会显示在页面上. 解决办法: 方法一.我们可以在页面上使用freemarker变量时 以 ${ ...
- POJ 2096 【期望DP】
题意: 有n种选择,每种选择对应m种状态.每种选择发生的概率相等,每种选择中对应的每种状态发生的概率相等. 求n种选择和m种状态中每种至少发生一次的期望. 期望DP好别扭啊.要用倒推的方法. dp[i ...
- ASP.Net软件工程师基础(四)
1.接口 (1)接口是一种规范.协议,定义了一组具有各种功能的方法(属性.索引器本质是方法). (2)接口存在的意义:多态.多态的意义:程序可扩展性. (3)接口解决了类的多继承的问题. (4)接口解 ...
- Caught exception while loading file struts-default.xml 错误
严重: Exception starting filter struts2 Caught exception while loading file struts-default.xml - [unkn ...
- 在内核中增加对yaffs文件系统的支持
自己最近在搞一些内核以及根文件系统的移植,就涉及到了需要在内核中增加对yaffs文件系统的支持.在网上找了一些文档后,自己将具体的操作过程做了一个总结,方便以后查询使用: 1.获取yaffs源码 YA ...
- Python面试里面的那些问题
Q:Python里面的数据结构都有哪些? 答:str,list,tuple,set,frozenset,dict,以上是Python默认的数据结构,还有容器类型collections,其中包含:Cou ...