您好,登錄后才能下訂單哦!
目前在html5和css3的熱潮下,html頁面的效果也是層出不窮,下面我們來介紹使用canvas來模仿刮獎刮開效果。
原理
在需要刮出的圖片或者文字上方蓋上一層灰色或者其他背景的canvas畫布,當手指或者鼠標點擊畫布并移動時,將畫布上移動過的軌跡變成透明即可。
分析
demo中在class為content的div上蓋上一層灰色的畫布,然后通過獲取鼠標和手指的坐標計算出在畫布位置上的坐標,通過在坐標原點位置畫一個半徑10px的透明圓形來透過畫布,顯示出畫布下的內容。本demo是用時需要改變的內容為_width,_height,touchTop,touchLeft這幾個參數,根據自身畫布的位置自行計算即可。由于是長按事件,記得在移動端阻止瀏覽器默認功能。
效果圖:
圖(1)初始圖
圖(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>
以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。