溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

canvas實(shí)現(xiàn)刮刮卡效果

發(fā)布時(shí)間:2020-10-14 16:54:05 來源:腳本之家 閱讀:186 作者:wocacaca 欄目:web開發(fā)

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

原理

在需要刮出的圖片或者文字上方蓋上一層灰色或者其他背景的canvas畫布,當(dāng)手指或者鼠標(biāo)點(diǎn)擊畫布并移動(dòng)時(shí),將畫布上移動(dòng)過的軌跡變成透明即可。

分析

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

效果圖:

canvas實(shí)現(xiàn)刮刮卡效果

圖(1)初始圖

canvas實(shí)現(xiàn)刮刮卡效果

圖(2)刮開效果

代碼如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標(biāo)題文檔</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" >中獎(jiǎng)啦~!</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>

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持億速云!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI