91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

canvas實現刮刮卡效果

發布時間:2020-10-14 16:54:05 來源:腳本之家 閱讀:189 作者:wocacaca 欄目:web開發

目前在html5和css3的熱潮下,html頁面的效果也是層出不窮,下面我們來介紹使用canvas來模仿刮獎刮開效果。

原理

在需要刮出的圖片或者文字上方蓋上一層灰色或者其他背景的canvas畫布,當手指或者鼠標點擊畫布并移動時,將畫布上移動過的軌跡變成透明即可。

分析

demo中在class為content的div上蓋上一層灰色的畫布,然后通過獲取鼠標和手指的坐標計算出在畫布位置上的坐標,通過在坐標原點位置畫一個半徑10px的透明圓形來透過畫布,顯示出畫布下的內容。本demo是用時需要改變的內容為_width,_height,touchTop,touchLeft這幾個參數,根據自身畫布的位置自行計算即可。由于是長按事件,記得在移動端阻止瀏覽器默認功能。

效果圖:

canvas實現刮刮卡效果

圖(1)初始圖

canvas實現刮刮卡效果

圖(2)刮開效果

代碼如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<style>
.content,.cover{width:400px; height:400px; position:absolute; left:50%; top:50%; margin:-200px 0 0 -200px;}
.content{ font-size:48px; line-height:400px; text-align:center;}
h4{ text-align:center; line-height:200px;}
</style>
</head>
<body>
 <h4>快來刮開!!!</h4>
 <div class="content" >中獎啦~!</div>
 <canvas id="cover" class="cover" width="400" height="400"></canvas>
</body>
<script>
var isdown = false,
 cover = document.getElementById("cover"),
 covercanvas = cover.getContext("2d");
 //
 covercanvas.fillStyle="transparent";
 covercanvas.fillRect(0,0,400,400);
 function fillter( canvas ){
 canvas.fillStyle="#ccc";
 canvas.fillRect(0,0,400,400);
 }
 function isDown(e){
 e.preventDefault();
 isdown=true; 
 }
 function isUp(e){
 isdown=false; 
 }
 function draw( e ){
 e.preventDefault();
 if(isdown){
 if(e.changedTouches){
  e=e.changedTouches[e.changedTouches.length-1];
  }
 var _height= parseInt((window.innerHeight-400)/2),
 _width= parseInt((window.innerWidth-400)/2),
 touchTop=e.clientY - _height,
 touchLeft=e.clientX - _width;
 with(covercanvas){
 beginPath();
 arc(touchLeft, touchTop, 10, 0, Math.PI * 2);
 fill();
 } 
 }
 //alert(touchTop);
 }
 fillter(covercanvas);
 covercanvas.globalCompositeOperation = 'destination-out';
 cover.addEventListener('touchstart',isDown);
 cover.addEventListener('touchmove',draw);
 cover.addEventListener('touchend',isUp);
 cover.addEventListener('mousemove',draw);
 cover.addEventListener('mousedown',isDown);
 cover.addEventListener('mouseup',isUp);
</script>
</html>

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丽水市| 黄龙县| 榆社县| 桐城市| 浪卡子县| 洛隆县| 马关县| 自治县| 嘉峪关市| 凌云县| 肇东市| 元氏县| 娱乐| 平武县| 磐石市| 宁南县| 铁岭市| 从江县| 调兵山市| 柳江县| 裕民县| 大田县| 济源市| 德令哈市| 河南省| 晋江市| 祁门县| 永济市| 香河县| 岳普湖县| 安图县| 沽源县| 福海县| 仪陇县| 武功县| 班玛县| 资源县| 呼伦贝尔市| 金平| 鄄城县| 温宿县|