The last time I wrote about the scratch-off effect was a year ago. At that time, I found the source code from Baidu and modified it. I was actually confused. This time, I asked a girl to write it, and then I thought Reorganize it yourself.
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <title>刮奖效果</title> <style type="text/css"> #canvas{ display: block; margin:0 auto; } </style></head><body> <canvas id="canvas"></canvas> <script type="text/javascript"> // 初始化,设置canva的宽(width)、高(height),涂抹画笔的直径(r),背景图片(img)(即底层的图片),上层遮罩层 var width=440; var height=440; var r=20; var img = new Image(); img.src="1.jpg"; var canvas=document.getElementById("canvas"); canvas.style.backgroundImage='url('+img.src+')'; canvas.width=width; canvas.height=height; var ctx=canvas.getContext("2d"); ctx.fillStyle="#ccc"; ctx.fillRect(0,0,width,height); //绘制上层的涂层 ctx.globalCompositeOperation="destination-out"; //在源图像外显示目标图像。只有源图像外的目标图像部分会被显示,源图像是透明的。 var isMove=false; var el=new Array(); el.x=canvas.offsetLeft; el.y=canvas.offsetTop; /************************************ 方式一:利用arc来模拟两端圆角的直线 ***********************************/ //按下时 function touchStart(e){ e.preventDefault(); isMove=true; ctx.closePath(); } // 移动时 function touchMove(e){ e.preventDefault(); var x,y; if(isMove){ if(e.targetTouches){ //移动端 var touch=e.targetTouches[0]; x=touch.clientX-el.x; //坐标矫正 y=touch.clientY-el.y; }else{ //pc端 x=e.pageX-el.x; y=e.pageY-el.y; } ctx.beginPath(); ctx.arc(x,y,r,0,Math.PI*2); //绘制笔触 ctx.fill(); ctx.closePath(); //每次闭合路径 } } // 离开时 function touchEnd(e){ e.preventDefault(); isMove=false ; ctx.closePath(); //涂抹区域百分比 var imgData=ctx.getImageData(0,0,width,height);//返回ImageData对象,该对象拷贝画布指定的像素数据 var pixles=imgData.data; var transNum=0; //rgba以数组形式储存在imageData中, // r=imgData.data[0]; // g=imgData.data[1]; // b=imgData.data[2]; // a=imgData.data[3]; for(var i=3,j=pixles.length;i<j;i+=4){ var a=pixles[i]; if(a==0){ transNum++ } } var transPercent=transNum/(pixles.length/4);//透明度比 console.log(transPercent); //超过某个值显示所有 if(transPercent>0.5){ ctx.fillRect(0,0,width,height); } } /************************************************************************** 方式二:ctx.lineTo(x,y)来画直线,用ctx.lineCap="round";来设置直线两端的圆角 当滑的很快的时候,这种效果比第一种好 ***************************************************************************/ //按下时 // function touchStart(e){ // e.preventDefault(); // isMove=true; // var x,y; // if(e.targetTouches){ //移动端 // var touch=e.targetTouches[0]; // x=touch.clientX-el.x; // y=touch.clientY-el.y; // }else{ //pc端 // x=touch.clientX-el.x; // y=touch.clientY-el.y; // } // ctx.beginPath(); // ctx.lineCap="round"; // ctx.lineJoin="round"; // ctx.lineWidth=r; // ctx.moveTo(x,y); // } // // 移动时 // function touchMove(e){ // e.preventDefault(); // var x,y; // if(isMove){ // if(e.targetTouches){ //移动端 // var touch=e.targetTouches[0]; // x=touch.clientX; // y=touch.clientY; // }else{ //pc端 // x=e.pageX; // y=e.pageY; // } // ctx.lineTo(x,y); //绘制笔触 // ctx.stroke(); // } // } // // 离开时 // function touchEnd(e){ // e.preventDefault(); // isMove=false ; // ctx.closePath(); // } // 事件监听 canvas.addEventListener("touchstart",touchStart); canvas.addEventListener("mousedown",touchStart); canvas.addEventListener("touchmove",touchMove); canvas.addEventListener("mousemove",touchMove); canvas.addEventListener("touchend",touchEnd); canvas.addEventListener("mouseup",touchEnd); </script></body></html>

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
