擦除效果

来源:互联网 发布:mac终端查询ip地址 编辑:程序博客网 时间:2024/06/05 17:49
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
body{
text-align:center;
padding-top:100px;
}
</style>
</head>
<body>
<canvas></canvas>
<script>
var canvas=document.getElementsByTagName("canvas")[0];
canvas.width=600;
canvas.height=600;
canvas.style.background="skyblue";

var cxt=canvas.getContext("2d");
canvas.onmousedown=function(event){
event=event||window.event;
var x=event.clientX-this.offsetLeft;
var y=event.clientY-this.offsetTop;

canvas.onmousemove=function(e){
var e=e||window.event;
cxt.strokeStyle="#fff";
cxt.strokeRect(x,y,e.clientX-this.offsetLeft-x,e.clientY-this.offsetTop-y);
cxt.fillStyle="white";
cxt.fillRect(x,y,e.clientX-this.offsetLeft-x,e.clientY-this.offsetTop-y);
}
document.onmouseup=function(){
canvas.onmousemove=null;
}

}
</script>
</body>
</html>
原创粉丝点击