canvas实现刮奖功能

canvas刮奖原理很简单,就是在刮奖区添加两个canvas,第一个canvas用于显示刮开后显示的内容,可以是一张图片或一个字符串,第二个canvas用于显示涂层,可以用一张图片或用纯色填充,第二个canvas覆盖在第一个canvas上面。

当在第二个canvas上点击或涂抹(点击然后拖动鼠标)时,把点击区域变为透明,这样就可以看到第一个canvas上的内容,即实现了刮奖效果。

效果图

在这里插入图片描述

源代码

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>_直接复制网</title>
<meta name="viewport" content="width=device-width, initial-scale=1 ,user-scalable=no">
<script src="http://libs.baidu.com/jquery/2.1.1/jquery.min.js"></script>
<style>
#lotteryContainer {position:relative;width: 300px;height:100px;
}
#drawPercent {color:#F60;
}
</style>
</head>
<body>
<button id="freshBtn">刷新</button><label>已刮开 <span id="drawPercent">0%</span> 区域。</label>
<div id="lotteryContainer"></div><script>
function Lottery(id, cover, coverType, width, height, drawPercentCallback) {this.conId = id;this.conNode = document.getElementById(this.conId);this.cover = cover;this.coverType = coverType;this.background = null;this.backCtx = null;this.mask = null;this.maskCtx = null;this.lottery = null;this.lotteryType = 'image';this.width = width || 300;this.height = height || 100;this.clientRect = null;this.drawPercentCallback = drawPercentCallback;
}Lottery.prototype = {createElement: function (tagName, attributes) {var ele = document.createElement(tagName);for (var key in attributes) {ele.setAttribute(key, attributes[key]);}return ele;},getTransparentPercent: function(ctx, width, height) {var imgData = ctx.getImageData(0, 0, width, height),pixles = imgData.data,transPixs = [];for (var i = 0, j = pixles.length; i < j; i += 4) {var a = pixles[i + 3];if (a < 128) {transPixs.push(i);}}return (transPixs.length / (pixles.length / 4) * 100).toFixed(2);},resizeCanvas: function (canvas, width, height) {canvas.width = width;canvas.height = height;canvas.getContext('2d').clearRect(0, 0, width, height);},drawPoint: function (x, y) {this.maskCtx.beginPath();var radgrad = this.maskCtx.createRadialGradient(x, y, 0, x, y, 30);radgrad.addColorStop(0, 'rgba(0,0,0,0.6)');radgrad.addColorStop(1, 'rgba(255, 255, 255, 0)');this.maskCtx.fillStyle = radgrad;this.maskCtx.arc(x, y, 30, 0, Math.PI * 2, true);this.maskCtx.fill();if (this.drawPercentCallback) {this.drawPercentCallback.call(null, this.getTransparentPercent(this.maskCtx, this.width, this.height));}},bindEvent: function () {var _this = this;var device = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));var clickEvtName = device ? 'touchstart' : 'mousedown';var moveEvtName = device? 'touchmove': 'mousemove';if (!device) {var isMouseDown = false;document.addEventListener('mouseup', function(e) {isMouseDown = false;}, false);} else {document.addEventListener("touchmove", function(e) {if (isMouseDown) {e.preventDefault();}}, false);document.addEventListener('touchend', function(e) {isMouseDown = false;}, false);}this.mask.addEventListener(clickEvtName, function (e) {isMouseDown = true;var docEle = document.documentElement;if (!_this.clientRect) {_this.clientRect = {left: 0,top:0};}var x = (device ? e.touches[0].clientX : e.clientX) - _this.clientRect.left + docEle.scrollLeft - docEle.clientLeft;var y = (device ? e.touches[0].clientY : e.clientY) - _this.clientRect.top + docEle.scrollTop - docEle.clientTop;_this.drawPoint(x, y);}, false);this.mask.addEventListener(moveEvtName, function (e) {if (!device && !isMouseDown) {return false;}var docEle = document.documentElement;if (!_this.clientRect) {_this.clientRect = {left: 0,top:0};}var x = (device ? e.touches[0].clientX : e.clientX) - _this.clientRect.left + docEle.scrollLeft - docEle.clientLeft;var y = (device ? e.touches[0].clientY : e.clientY) - _this.clientRect.top + docEle.scrollTop - docEle.clientTop;_this.drawPoint(x, y);}, false);},drawLottery: function () {this.background = this.background || this.createElement('canvas', {style: 'position:absolute;left:0;top:0;'});this.mask = this.mask || this.createElement('canvas', {style: 'position:absolute;left:0;top:0;'});if (!this.conNode.innerHTML.replace(/[\w\W]| /g, '')) {this.conNode.appendChild(this.background);this.conNode.appendChild(this.mask);this.clientRect = this.conNode ? this.conNode.getBoundingClientRect() : null;this.bindEvent();}this.backCtx = this.backCtx || this.background.getContext('2d');this.maskCtx = this.maskCtx || this.mask.getContext('2d');if (this.lotteryType == 'image') {var image = new Image(),_this = this;image.onload = function () {_this.width = this.width;_this.height = this.height;_this.resizeCanvas(_this.background, this.width, this.height);_this.backCtx.drawImage(this, 0, 0);_this.drawMask();}image.src = this.lottery;} else if (this.lotteryType == 'text') {this.width = this.width;this.height = this.height;this.resizeCanvas(this.background, this.width, this.height);this.backCtx.save();this.backCtx.fillStyle = '#FFF';this.backCtx.fillRect(0, 0, this.width, this.height);this.backCtx.restore();this.backCtx.save();var fontSize = 30;this.backCtx.font = 'Bold ' + fontSize + 'px Arial';this.backCtx.textAlign = 'center';this.backCtx.fillStyle = '#F60';this.backCtx.fillText(this.lottery, this.width / 2, this.height / 2 + fontSize / 2);this.backCtx.restore();this.drawMask();}},drawMask: function() {this.resizeCanvas(this.mask, this.width, this.height);if (this.coverType == 'color') {this.maskCtx.fillStyle = this.cover;this.maskCtx.fillRect(0, 0, this.width, this.height);this.maskCtx.globalCompositeOperation = 'destination-out';} else if (this.coverType == 'image'){var image = new Image(),_this = this;image.onload = function () {_this.maskCtx.drawImage(this, 0, 0);_this.maskCtx.globalCompositeOperation = 'destination-out';}image.src = this.cover;}},init: function (lottery, lotteryType) {this.lottery = lottery;this.lotteryType = lotteryType || 'image';this.drawLottery();}
}window.onload = function () {var lottery = new Lottery('lotteryContainer', '#CCC', 'color', 300, 100, drawPercent);lottery.init('http://www.baidu.com/img/bdlogo.gif', 'image');document.getElementById('freshBtn').onclick = function() {drawPercentNode.innerHTML = '0%';lottery.init(getRandomStr(10), 'text');}var drawPercentNode = document.getElementById('drawPercent');function drawPercent(percent) {drawPercentNode.innerHTML = percent + '%';}
}function getRandomStr(len) {var text = "";var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";for( var i=0; i < len; i++ )text += possible.charAt(Math.floor(Math.random() * possible.length));return text;
}
</script>
</body>
</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/181702.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【JMeter】后置处理器的分类以及场景介绍

1.常用后置处理器的分类 Json提取器 针对响应体的返回结果是json格式的会自动生成新的变量名为【提取器中变量名_MatchNr】,取到的个数由jsonpath expression取到的个数决定 可以当作普通变量调用,调用语法:${提取器中变量名_MatchNr}正则表达式提取器 返回结果是任何数据格…

win10 + cmake3.17 编译 giflib5.2.1

所有源文件已经打包上传csdn&#xff0c;大家可自行下载。 1. 下载giflib5.2.1&#xff0c;解压。 下载地址&#xff1a;GIFLIB - Browse Files at SourceForge.net 2. 下载CMakeLists.txt 及其他依赖的文件 从github上的osg-3rdparty-cmake项目&#xff1a; https://github.…

第五部分:Tomcat

5.1&#xff1a;JavaWeb 5.1.1&#xff1a;JavaWeb的概念 ①什么是JavaWeb? JavaWeb是指所有通过Java语言编写可以通过浏览器访问的程序的总称 JavaWeb是基于请求和响应来开发的 ②什么是请求&#xff1f; 请求是指客户端给服务器发送数据&#xff0c;叫请求Request ③什么是…

谁说 Linux 不能玩游戏?

在上个世纪最早推出视频游戏的例子是托马斯戈德史密斯&#xff08;Thomas T. Goldsmith Jr.&#xff09;于1947年开发的“「Cathode Ray Tube Amusement Device」”&#xff0c;它已经显着发展&#xff0c;并且已成为人类生活中必不可少的一部分。 通过美国游戏行业的统计数据&…

String的几个常见面试题及其解析

String s3 new String("a") new String("b")会不会在常量池中创建对象&#xff1f; 答案&#xff1a;不会&#xff0c;首先需要解释“”字符串拼接的理解。 采用 运算符拼接字符串时&#xff1a; 如果拼接的都是字符串直接量&#xff0c;则在编译时编…

【软件逆向】如何逆向Unity3D+il2cpp开发的安卓app【IDA Pro+il2CppDumper+DnSpy+AndroidKiller】

教程背景 课程作业要求使用反编译技术&#xff0c;在游戏中实现无碰撞。正常情况下碰撞后角色死亡&#xff0c;修改为直接穿过物体不死亡。 需要准备的软件 il2CppDumper。DnSpy。IDA Pro。AndroidKiller。 一、使用il2CppDumper导出程序集 将{my_game}.apk后缀修改为{my_…

rabbitmq的confirm模式获取correlationData为null解决办法

回调函数confirm中的correlationDatanull // 实现confirm回调,发送到和没发送到exchange,都触发 Override public void confirm(CorrelationData correlationData, boolean ack, String cause) {// 参数说明:// correlationData: 相关数据,可以在发送消息时,进行设置该参数// …

Go 方法介绍,理解“方法”的本质

Go 方法介绍&#xff0c;理解“方法”的本质 文章目录 Go 方法介绍&#xff0c;理解“方法”的本质一、认识 Go 方法1.1 基本介绍1.2 声明1.2.1 引入1.2.2 一般声明形式1.2.3 receiver 参数作用域1.2.4 receiver 参数的基类型约束1.2.5 方法声明的位置约束1.2.6 如何使用方法 二…

【网络协议】聊聊CND如何进行提升系统读性能

我们知道对于京东这种仓储来说&#xff0c;其实并不是在北京有一个仓储中心&#xff0c;而是针对全国主要的地方&#xff0c;北京、上海、广州、杭州&#xff0c;郑州等地方都有自己的仓储中心&#xff0c;当用户下单后&#xff0c;就会根据最近的仓储进行发货&#xff0c;不仅…

Kafka基本原理、生产问题总结及性能优化实践 | 京东云技术团队

Kafka是最初由Linkedin公司开发&#xff0c;是一个分布式、支持分区的&#xff08;partition&#xff09;、多副本的&#xff08;replica&#xff09;&#xff0c;基于zookeeper协调的分布式消息系统&#xff0c;它的最大的特性就是可以实时的处理大量数据以满足各种需求场景&a…

【快速解决】Android Studio ERROR: Read timed out

目录 前言 回顾我查到过的解决方案&#xff08;这里是我自己解决时候的经历&#xff0c;赶时间的可以直接跳过看文章最后&#xff0c;快速进行解决&#xff09; 快速解决方案如下 总结 前言 当我们新建一个安卓项目出现Read timed out时候不要慌&#xff0c;这篇文章会打开…

图像置乱加密的破解方法

仅仅通过置乱的方式,是无法对图像进行安全加密的。 针对采用置乱方式加密,可以采用多对(明文、密文)推导出加密时所使用的置乱盒。 step1 :初始化 1、使用I表示明文,E表示密文,彼此间关系如下: 2、为了处理上的方便,把二维转换为一维(这里为了说明方便,实际上,大…

CoT: 思路链提示促进大语言模型的多步推理

CoT 总览摘要1 引言2 Chain-of-Thought Prompting3 算术推理 &#xff08;Arithmetic Reasoning&#xff09;3.1 实验设置3.2 结果3.3 消融实验3.4 CoT的鲁棒性 4 常识推理 &#xff08;Commonsense Reasoning&#xff09;5 符号推理 &#xff08;Symbolic Reasoning&#xff0…

“Java与Redis的默契舞曲:优雅地连接与存储数据“

文章目录 引言1. Java连接上Redis2. Java对Redis进行存储数据2.1 存储set类型数据2.2 存储hash类型数据2.3 存储list类型数据 总结 引言 在现代软件开发中&#xff0c;数据存储和处理是至关重要的一环。Java作为一门强大的编程语言&#xff0c;与Redis这个高性能的内存数据库相…

pytorch笔记 GRUCELL

1 介绍 GRU的一个单元 2 基本使用方法 torch.nn.GRUCell(input_size, hidden_size, biasTrue, deviceNone, dtypeNone) 输入&#xff1a;&#xff08;batch&#xff0c;input_size&#xff09; 输出和隐藏层&#xff1a;&#xff08;batch&#xff0c;hidden_size&#xf…

vue3+element Plus实现弹框的拖拽、可点击底层页面功能

1、template部分 <el-dialog:modal"false"v-model"dialogVisible"title""width"30%"draggable:close-on-click-modal"false"class"message-dialog"> </el-dialog> 必须加的属性 modal:是否去掉遮罩层…

Redis原理到常用语法基础图文讲解

在初期&#xff0c;已经讲述了Redis安装问题。现在正式进入Redis的入门阶段 系统架构的演进 传统单机架构 一台机器运行应用程序、数据库服务器 现在大部分公司的产品都是这种单机架构。因为现在计算机硬件发展速度很快&#xff0c;哪怕只有一台主机&#xff0c;性能也很高…

Ubuntu 20.04源码安装git 2.35.1

《如何在 Ubuntu 20.04 上从源代码安装 Git [快速入门]》和《如何在 Ubuntu 20.04 上安装 Git》是我参考的博客。 https://git-scm.com/是git官网。 lsb_release -r看到操作系统版本是20.04。 uname -r看到内核版本是5.4.0-156-generic。 sudo apt update更新一下源。 完…

携程AI布局:三重创新引领旅游行业智能化升级

2023年10月24日&#xff0c;携程全球合作伙伴峰会在新加坡召开&#xff0c;携程集团联合创始人、董事局主席梁建章做了名为《旅游业是独一无二的最好的行业》的演讲&#xff0c;梁建章在演讲中宣布了携程生成式 AI、内容榜单、ESG 低碳酒店标准三重创新的战略方向。这些创新将为…

Technology strategy Pattern 学习笔记3-Creating the Strategy-Industry context

Creating the Strategy-Industry context 1 SWOT 1.1 create steps 1.与内部各方沟通 了解企业的人、流程和技术&#xff0c;包括与其它企业的不同了解哪些创新可以做竞争者及市场信息企业可以支撑的类似业务 按SWOT四象限分类&#xff0c;先做列表后放入象限 1.2 四象限…