使用html+css+js實現彈球游戲

来源:https://www.cnblogs.com/yidaixiaohui/archive/2018/08/18/8447170.html
-Advertisement-
Play Games

使用html+css+js實現彈球游戲 效果圖: 代碼如下,複製即可使用: 如果您有更好的方法或更多的功能,可以和我們大家一起分享哦,如有錯誤,歡迎聯繫我改正,非常感謝!!! ...


 使用html+css+js實現彈球游戲

 效果圖:

 代碼如下,複製即可使用:

<!doctype html>
<head>
    <style type="text/css">
        .panel{
            position: relative;
            z-index: 0;
            top:0px;
            left: 400px;
            width: 300px;
            height: 500px;
        }
        .console{
            position: absolute;
            z-index: 1;
            top:0;
            left:0;
            width:100%;
            height: 40px;
            background-color: #bbb;
        }
        .message{
            position: absolute;
            z-index: 1;
            top:40px;
            left:0;
            width:100%;
            height: 460px;
            color: white;
            font-size: 50px;
            text-align: center;
            line-height: 460px;
            background-color: #999;
        }
        .start,.score,.pause{
            position: absolute;
            z-index: 2;
            top: 0;
            width: 100px;
            height: 100%;
            font-size: large;
            color: white;
            text-align: center;
            line-height: 40px;
            background: -webkit-linear-gradient(top,#4ca8ff,yellow);
        }
        .start{
            left: 0px;
        }
        .score{
            left:100px;
            background-color: red;
        }
        .pause{
            left:200px;
        }
        .start:after,.pause:before{
            content: "";
            position: absolute;
            z-index: 2;
            top: 0;
            width: 3px;
            height: 100%;
            background: -webkit-linear-gradient(top,#666,#999);
        }
        .start:after{
            left: 97px;
        }
        .pause:before{
            left: 0px;
        }
        .start:hover,.pause:hover{
            cursor: pointer;
            background: -webkit-linear-gradient(top,#4ca8ff,red);
        }
        .panel span{
            position: absolute;
            z-index: 0;
            top:50%;
            left: 50%;
            font-size: 50px;
            color: blue;
        }
        .ball,.secondBall{
            position:absolute;
            z-index: 2;
            border-radius:50%;
            width: 20px;
            height: 20px;
        }
        .ball{
            top: 460px;
            left:140px;
            background-color: red;
        }
        .secondBall{
            top: 40px;
            left:140px;
            background-color: red;
        }
        .plate{
            position: absolute;
            top:480px;
            left: 100px;
            z-index: 2;
            width: 100px;
            height: 20px;
            background-color: #e5e5e5;
        }
        .promte{
            margin-top: 20px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div id="panel" class="panel">
        <div class="console">
            <div id="start" class="start">開始</div>
            <div id="score" class="score">0</div>
            <div id="pause" class="pause">暫停</div>
        </div>
        <div id="message" class="message"></div>
        <div id="ball" class="ball"></div>
        <div id="plate" class="plate"></div>
    </div>
    <div class="promte">提示:鍵盤左右箭頭控制滑板</div>
    <script     type="text/javascript">
        (function(){
            document.onkeydown = function(e){
                var e = e || window.event;
                if(e.keyCode == 37){
                    //鍵盤向左鍵
                    plateMove("left");
                }else if(e.keyCode == 39){
                    //鍵盤向右鍵
                    plateMove("right");
                }
            }
        })();
        var panel = document.getElementById("panel"),
            message = document.getElementById("message"),
            plate = document.getElementById("plate"),
            ball = document.getElementById("ball"),
            start = document.getElementById("start"),
            score = document.getElementById("score"),
            pause = document.getElementById("pause"),
            secondBall;
        var startGame, x = x2 = -1, y = y2 = -1, speed = 1, positionArr = [], pauseActive = false,
            //一個標誌:表示難度是否還能增加
            flag = true,
            //球的起始位置
            ballX, ballY, secondBallX, secondBallY,
            //邊界
            minX = 0,
            maxX = panel.offsetWidth - ball.offsetWidth,
            minY = 40;
            maxY = panel.offsetHeight - ball.offsetHeight - plate.offsetHeight;
        window.onload = function(){
            if(window.addEventListener){
                start.addEventListener("click",startClick,false);
                pause.addEventListener("click",pauseClick,false);
            }else if(window.attachEvent){
                start.attachEvent("onclik",startClick);
                pause.attachEvent("onclik",pauseClick);
            }else{
                start.onclik = startClick;
                pause.onclik = pauseClick;
            }
        }
        
        function plateMove(direction){
            if(direction == "left"){
                if(plate.offsetLeft > 0){
                    plate.style.left = (plate.offsetLeft-30 < 0? 0 : plate.offsetLeft-30)+"px";
                }
            }
            if(direction == "right"){
                if(plate.offsetLeft < 200){
                    plate.style.left = (plate.offsetLeft+30 > 200? 200 : plate.offsetLeft+30)+"px";
                }
            }
        }
        function startClick(){
            if(!pauseActive){
                resetGame();
            }else{
                pauseActive = !pauseActive;
            }
            startGame = setInterval(function(){
                //console.log(ballX+"======"+ballY);
                positionArr = setPosition(ballX,ballY,true);
                if(positionArr == "GAMEOVER"){
                    return;
                }
                ballX = positionArr[0];
                ballY = positionArr[1];
                //設置球的位置
                ball.style.left = ballX+"px";
                ball.style.top = ballY+"px";
                if(!flag){
                    positionArr = setPosition(secondBallX,secondBallY,false);
                    secondBallX = positionArr[0];
                    secondBallY = positionArr[1];
                    secondBall.style.left = secondBallX+"px";
                    secondBall.style.top = secondBallY+"px";
                }else{
                    addDifficulty();
                }
            },30);
        }
        function pauseClick(){
            pauseActive = true;
            clearInterval(startGame);
        }

        function resetGame(){
            clearInterval(startGame);
            message.innerHTML="";
            score.innerHTML="0";
            ball.style.left = "140px";
            ball.style.top = "460px";
            plate.style.left = "100px";
            plate.style.top = "480px";
            ballX = ball.offsetLeft;
            ballY = ball.offsetTop;
            speed = 1;
            flag = true;
            //第二個球設置隱藏
            if(secondBall){
                secondBall.style.display="none";
                secondBall.style.left = "140px";
                secondBall.style.top = "40px";
            }
        }

        function addDifficulty(){
            if(parseInt(score.innerHTML) > 500 && parseInt(score.innerHTML) < 2000){
                speed = 1.2;
            }else if(parseInt(score.innerHTML) > 2000 && parseInt(score.innerHTML) < 5000){
                speed = 1.5;
            }else if(parseInt(score.innerHTML) > 5000){
                if(typeof secondBall != "undefined"){
                    secondBall.style.display="";
                }else{
                    secondBall = document.createElement('div');
                }
                
                secondBall.className = 'secondBall';
                panel.appendChild(secondBall);
                secondBallX = secondBall.offsetLeft;
                secondBallY = secondBall.offsetTop;
                flag = false;
            }
        }
        function setPosition(_x,_y,firstball){
            if(_x == minX || _x == maxX){
                //x*=-1;
                firstball? x*=-1 : x2*=-1;
            }
            if(_y == minY || _y == maxY){
                //y*=-1;
                firstball? y*=-1 : y2*=-1;
            }
            if(_y 	   

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 總結一下近期學習的大數據知識, 學習之前沒搞清楚的知識 傳統的web應用(LAMP、JavaEE、NODE系等)與大數據什麼關係? 之前一直以為大數據的東西就是來取代傳統的Web應用的,其實並不是這樣;即使是大數據的架構,應用層依然會是傳統的web應用,但是會根據數據特點對數據存儲(結構化數據依然會 ...
  • 註:此文章所寫內容完全在虛擬機配置,系統:centos,jdk和hadoop已經安裝完成所配集群包括hadoop01,hadoop02,hadoop03,hadoop04四台,ip分別為:192.168.80.101,192.168.80.102,192.168.80.103,192.168.80. ...
  • redis五大數據類型:string(字元串),hash(哈希,類似java的Map),list(列表),set(集合),zset(有序集合) 1、redis的鍵(key) keys 查詢資料庫中的key值,keys * 查出所有,keys rt* 查出匹配的key exists key 判斷key ...
  • weight詳解 是用來等比例劃分區域的屬性。 案例代碼 為什麼出現2:1的案例呢?three怎麼就不見了呢? 1. 每個寬度為 ,屏幕為1,那麼屏幕就是1 3= 2個 2. 計算方法, ,結果是one占了兩份,two占了一份,three什麼都沒有 ,`padding`詳解 代表是偏移,表示組件離容 ...
  • UI的描述 對於 應用程式中,所有用戶界面元素都是由 和`ViewGroup View ViewGroup View ViewGroup`對象的佈局容器! 為我們提供了 和`ViewGroup`的兩個子類的集合,提供常用的一些輸入控制項(比如按鈕,圖片和文本域等)和各種各樣的佈局模式(比如線程佈局,相 ...
  • 前言 lodash受歡迎的一個原因,是其優異的計算性能。而其性能能有這麼突出的表現,很大部分就來源於其使用的演算法——惰性求值。 本文將講述lodash源碼中,惰性求值的原理和實現。 一、惰性求值的原理分析 惰性求值(Lazy Evaluation),又譯為惰性計算、懶惰求值,也稱為傳需求調用(cal ...
  • 五層網路模型 簡介 互聯網的實現,依托於網路協議。網路協議又分為好幾層,關於如何分層有過很多爭論,比較受人認可的有五層模型、七層模型、四層模型。今天我們就來講講五層網路模型。 從名字就可以看出來,五層網路模型將網路協議分為五層,每層都有對應的一些網路協議。從上到下分別是: 應用層 傳輸層 網路層 數 ...
  • 1 2 3 4 5 6 wangEditor上傳圖片到伺服器 7 8 9 10 11 12 13 14 15 16 119 120 121 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...