jq + 面向對象實現拼圖游戲

来源:https://www.cnblogs.com/sgs123/archive/2019/05/04/10808246.html
-Advertisement-
Play Games

jq + 面向對象實現拼圖游戲 知識點 拖拽事件 es6面向對象 jquery事件 效果圖 html: css: js: javascript class Game { constructor() { this.boxW = parseInt($('.box').css('width')); thi ...


jq + 面向對象實現拼圖游戲

知識點

  • 拖拽事件
  • es6面向對象
  • jquery事件
  • 效果圖

html:

    <div class="wraper">
        <div class="btn">
            <button class="start">開始</button>
        </div>
        <div class="box"></div>
    </div>

css:

    * {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    html,
    body {
        width: 100%;
        height: 100%;
        background: url('../img/bg_pic.jpg') no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .wraper {
        width: 500px;
        height: 600px;
        position: relative;
    }
    .wraper .btn {
        text-align: center;
        line-height: 80px;
    }
    .wraper .btn button {
        width: 100px;
        height: 40px;
        background: yellow;
        border: none;
        outline: none;
        font-size: 14px;
        color: red;
        border-radius: 20px;
        cursor: pointer;
    }
    .wraper .box {
        width: 100%;
        height: 500px;
        position: relative;
        border: 10px solid red;
        border-radius: 10px;
    }
    .wraper .box .pic {
        position: absolute;
        background: url('../img/zy.jpg') no-repeat;
        box-shadow: 0 0 5px #fff;
        background-size: 500px 500px;
        cursor: pointer;
    }

js:

   class Game {
        constructor() {
            this.boxW = parseInt($('.box').css('width'));
            this.boxH = parseInt($('.box').css('height'));
            this.imgW = this.boxW / 5;
            this.imgH = this.boxH / 5;
            this.flag = true; //true為開始 false為重排
            this.orArr = []; //標準數組
            this.randArr = []; //亂序數組 
            this.init();
        }
        init() {
            this.createDom();
            this.getState();
        }
        createDom() {
            //行
            for (var i = 0; i < 5; i++) {
                //列
                for (var j = 0; j < 5; j++) {
                    this.orArr.push(i * 5 + j);
                    let imgs = $("<div class='pic'></div>").css({
                        width: this.imgW + 'px',
                        height: this.imgH + 'px',
                        left: j * this.imgW + 'px',
                        top: i * this.imgH + 'px',
                        backgroundPosition: -j * this.imgW + 'px ' + -i * this.imgH + 'px'
                    });
                    $('.box').append(imgs);
                }
            }
        }
        getState() {
            let btn = $('.btn .start');
            let imgs = $('.pic');
            let _this = this;
            btn.on('click', function() {
                if (_this.flag) {
                    _this.flag = false;
                    btn.text('重排');
                    _this.getRandom();
                    _this.getOrder(_this.randArr);
                    imgs.on('mousedown', function(e) {
                        let index = $(this).index();
                        let left = e.pageX - imgs.eq(index).offset().left;
                        let top = e.pageY - imgs.eq(index).offset().top;
                        $(document).on('mousemove', function(e1) {
                            let left1 = e1.pageX - left - $('.box').offset().left - 10;
                            let top1 = e1.pageY - top - $('.box').offset().top - 10;
                            imgs.eq(index).css({
                                'z-index': '40',
                                'left': left1,
                                'top': top1
                            })
                        }).on('mouseup', function(e2) {
                            let left2 = e2.pageX - left - $('.box').offset().left - 10;
                            let top2 = e2.pageY - top - $('.box').offset().top - 10;
                            let index2 = _this.changeIndex(left2, top2, index);
                            if (index === index2) {
                                _this.picReturn(index);
                            } else {
                                _this.picChange(index, index2);
                            }
                            $(document).off('mousemove').off('mouseup').off('mousedown');
                        })
                        return false;
                    })
                } else {
                    _this.flag = true;
                    btn.text('開始');
                    _this.getOrder(_this.orArr);
                    imgs.off('mousemove').off('mouseup').off('mousedown');
                }
            })
        }
        changeIndex(left, top, index) {
            if (left < 0 || left > this.boxW || top < 0 || top > this.boxH) {
                return index;
            } else {
                let col = Math.floor(left / this.imgW);
                let row = Math.floor(top / this.imgH);
                let moveIndex = 5 * row + col;
                let i = 0;
                let len = this.randArr.length;
                while ((i < len) && this.randArr[i] !== moveIndex) {
                    i++;
                }
                return i;
            }
        }
        picReturn(index) {
            let j = this.randArr[index] % 5;
            let i = Math.floor(this.randArr[index] / 5);
            $('.pic').eq(index).css('z-index', '40').animate({
                'left': j * this.imgW,
                'top': i * this.imgH
            }, 300, function() {
                $(this).css('z-index', '10');
            })
        }
        picChange(index, index2) {
            let _this = this;
            let fromJ = _this.randArr[index] % 5;
            let fromI = Math.floor(_this.randArr[index] / 5);
            let toJ = _this.randArr[index2] % 5;
            let toI = Math.floor(_this.randArr[index2] / 5);
            let temp = _this.randArr[index];
            $('.pic').eq(index).css('z-index', '40').animate({
                'left': toJ * _this.imgW + 'px',
                'top': toI * _this.imgH + 'px'
            }, 300, function() {
                $(this).css('z-index', '10');
            })
            $('.pic').eq(index2).css('z-index', '40').animate({
                'left': fromJ * _this.imgW + 'px',
                'top': fromI * _this.imgH + 'px'
            }, 300, function() {
                $(this).css('z-index', '10');
                _this.randArr[index] = _this.randArr[index2];
                _this.randArr[index2] = temp;
                _this.check();
            })
        }
        getRandom() {
            this.randArr = [...this.orArr];
            this.randArr.sort(function() {
                return Math.random() - 0.5;
            })
        }
        getOrder(arr) {
            let len = arr.length;
            for (var i = 0; i < len; i++) {
                $('.box .pic').eq(i).animate({
                    left: arr[i] % 5 * this.imgW,
                    top: Math.floor(arr[i] / 5) * this.imgH
                }, 400)
            }
        }
        check() { //判斷是否成功
            if (this.randArr.toString() == this.orArr.toString()) {
                alert('拼圖成功');
                this.flag = true;
                $('.btn .start').text('開始');
                $('.pic').off('mousemove').off('mouseup').off('mousedown');
            }
        }
    }
    new Game();

參考至騰訊課堂渡一教育


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

-Advertisement-
Play Games
更多相關文章
  • iScroll.js 一個可以實現客戶端原生滾動效果的類庫。 1、下載iScroll 2、build目錄下提供了不同版本的iScroll,可根據情況選擇使用 3、html要求有3層結構如下圖 4、獲取wrapper這個最外層結點,然後實例化,如下圖 swipe.js 1、下載swipe.js 2、h ...
  • 佈局方式 1、固定寬度佈局:為網頁設置一個固定的寬度,通常以px做為長度單位,常見於PC端網頁。 2、流式佈局:為網頁設置一個相對的寬度,通常以百分比做為長度單位。 3、柵格化佈局:將網頁寬度人為的劃分成均等的長度,然後排版佈局時則以這些均等的長度做為度量單位,通常利用百分比做為長度單位來劃分成均等 ...
  • CSS 預處理器是一種語言,用來為 CSS 增加一些編程的的特性,無需考慮瀏覽器的相容性問題,並且你可以在 CSS 中使用變數、簡單的程式邏輯、函數等等在編程語言中的一些基本技巧,可以讓你的 CSS 更簡潔,適應性更強,代碼更直觀等諸多好處。 常見的CSS預處理器有:LESS、SASS、Stylus ...
  • 前言 我們前面已經學習完了Node中一些核心模塊還有如何正確配置響應頭的Content Type,今天我們來實現一個簡單的demo,鞏固下之前學習的內容。 需求 我們平時訪問百度或者其他大的門戶網站的時候,伺服器給我們返回的基本都是一個HTML文檔,然後瀏覽器解析渲染成頁面。 今天我們就用Node. ...
  • 媒體查詢 設備終端的多樣化,直接導致了網頁的運行環境變的越來越複雜,為了能夠保證我們的網頁可以適應多個終端,不得不專門為某些特定的設備設計不同的展示風格,通過媒體查詢可以檢測當前網頁運行在什麼終端,可以有機會實現網頁適應不同終端的展示風格。 媒體類型 將不同的終端設備劃分成不同的類型,稱為媒體類型 ...
  • 函數表達式和閉包 針對JS高級程式設計這本書,主要是理解概念,大部分內容源自書內。寫這個主要是當個書中的筆記加總結 存在的問題請大家多多指正! 定義函數的兩種方法 函數聲明: 函數表達式: 函數聲明提升 :函數可以先用,聲明在下麵自動給提到上面來 函數表達式 後面的是 匿名函數 ,又叫 拉姆達函數 ...
  • 1. 添加新元素 2.刪除已有元素 ...
  • 針對JS高級程式設計這本書,主要是理解概念,大部分內容源自書內。寫這個主要是當個書中的筆記加總結 存在的問題請大家多多指正! 6.1理解對象 創建對象的兩個方法(暫時) 6.1.1 類型屬性 JS不能訪問的數據屬性 Configurable 能不能用delete刪除 預設true Enumerab ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...