HTML5 Canvas实现刮刮卡效果实例

HTML:

<style>
#canvas {
    border: 1px solid blue;
    position: absolute;
    left: 10px;
    top: 10px;
    background:url(../Images/1.jpg) no-repeat center center;
    background-size:contain;
}
</style>
<canvas id="canvas"></canvas>

一、解决方案1是使用clearRect清空鼠标位置的像素

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'gray';
ctx.rect(0, 0, canvas.width, canvas.height);
ctx.fill();
//解决方案1是使用clearRect清空鼠标位置的像素
var isClear = false;
//设置清空部分
canvas.onmousedown = function (ev) {
    isClear = true;
}
canvas.onmouseup = function () {
    isClear = false;
}
canvas.onmousemove = function (ev) {
    if (isClear == false)
        return;
    ev = ev || window.event;
    //清空像素,根据当前所在点
    var curX = ev.clientX - canvas.offsetLeft;
    var curY = ev.clientY - canvas.offsetTop;
    var step = 20;
    ctx.clearRect(curX - step / 2, curY - step / 2,
        step, step);
    ev.stopPropagation();
}

二、解决方案2是使用globalCompositeOperation,重叠处理,重叠的透明处理

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'gray';
ctx.rect(0, 0, canvas.width, canvas.height);
ctx.fill();

//解决方案2是使用globalCompositeOperation,重叠处理
//优点使用 fill() 不限制是否是矩形
//在与源不重叠的区域上保留目标。其他部分都变成透明的。
ctx.globalCompositeOperation = 'destination-out';
var isClear = false;
//设置清空部分
canvas.onmousedown = function (ev) {
    isClear = true;
}
canvas.onmouseup = function () {
    isClear = false;
}
canvas.onmousemove = function (ev) {
    if (isClear == false)
        return;
    ev = ev || window.event;
    //清空像素,根据当前所在点
    var curX = ev.clientX - canvas.offsetLeft;
    var curY = ev.clientY - canvas.offsetTop;
    var step = 10;
    ctx.beginPath();
    ctx.arc(curX, curY, step, 0, Math.PI * 2, false);
    ctx.fill();
    ev.stopPropagation();
}

 

转载于:https://www.cnblogs.com/tianma3798/p/5897416.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值