溫馨提示×

溫馨提示×

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

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

在html5中如何使用Canvas幀動畫吃蘋果小游戲

發(fā)布時(shí)間:2022-02-22 14:31:43 來源:億速云 閱讀:119 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)在html5中如何使用Canvas幀動畫吃蘋果小游戲的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

代碼如下

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>幀動畫</title>
    </head>
    <body>
        <canvas id="canvas" width="400" height="300"></canvas>
        <div class="">
            <button class="start-btn" type="button">重新吃</button>
            <button class="end-btn" type="button">不吃了</button>
            <button class="pause-btn" type="button">歇一歇</button>
            <button class="continue-btn" type="button">繼續(xù)吃</button>
        </div>
        <script type="text/javascript">
            const canvas = document.getElementById("canvas")
            canvas.style.border = "1px solid black"
            const ctx = canvas.getContext("2d")

            const img = new Image() // 創(chuàng)建圖片對象
            let timer // 定時(shí)器標(biāo)識符
            let millisec = 300 // 執(zhí)行時(shí)間間隔
            let colIndex = 0 // 列數(shù)
            let rowIndex = 0 // 行數(shù)
            const timerFun = () => { // 聲明定時(shí)器執(zhí)行函數(shù)
                console.log("設(shè)置定時(shí)器");
                ctx.clearRect(0, 0, canvas.style.width, canvas.style.height) // 清除畫布

                if (rowIndex < 3) { // 如果是前5幀
                    ctx.drawImage(img, colIndex * 240, rowIndex * 240, 200, 200, 50, 50, 200, 200) // 圖片對象,x坐標(biāo),y坐標(biāo)(注:圖片上定位的坐標(biāo)),width,height(圖片上截取的大?。瑇坐標(biāo),y坐標(biāo)(注:圖片在畫布上的起點(diǎn),即左上角),width,height(縮放,不是裁剪)
                    colIndex++ // 下一幀

                    if (colIndex > 4) {
                        colIndex = 0
                        rowIndex++
                    }
                } else {
                    colIndex = 0
                    rowIndex = 0
                }
            }

            img.onload = () => {
                timer = setInterval(timerFun, millisec)
            }
            img.src = "image/apple.jpg"

            const startBtn = document.getElementsByClassName('start-btn')[0]
            const endBtn = document.getElementsByClassName('end-btn')[0]
            const pauseBtn = document.getElementsByClassName('pause-btn')[0]
            const continueBtn = document.getElementsByClassName('continue-btn')[0]

            startBtn.addEventListener('click', () => {
                console.log("點(diǎn)擊開始", timer)
                clearInterval(timer)
                colIndex = 0 // 列數(shù)
                rowIndex = 0 // 行數(shù)
                timer = setInterval(timerFun, millisec)
            })
            endBtn.addEventListener('click', () => {
                console.log("點(diǎn)擊結(jié)束", timer)
                clearInterval(timer)
                colIndex = 0
                rowIndex = 0
                ctx.drawImage(img, colIndex * 240, rowIndex * 240, 200, 200, 50, 50, 200, 200)
                timer = 0
            })
            pauseBtn.addEventListener('click', () => {
                console.log("點(diǎn)擊暫停", timer)
                clearInterval(timer)
                timer = 0
            })
            continueBtn.addEventListener('click', () => {
                if (timer) {
                    alert('吃著呢,別催')
                    return
                }
                console.log("點(diǎn)擊繼續(xù)", timer)
                timer = setInterval(timerFun, millisec)
            })
        </script>
    </body>
</html>

感謝各位的閱讀!關(guān)于“在html5中如何使用Canvas幀動畫吃蘋果小游戲”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

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

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

AI