js 实现扫雷游戏,源码开放,支持npm引入使用

本人开发的js版本扫雷游戏

体验地址 | Github

Minesweeper game

Sponsors

alins alins alins

Install and use

npm i minesweeper-game
import {Map} from 'minesweeper-game';

const map = new Map();

Reset Map

map.reset();

TS Statement

interface IMapOptions {
    width?: number; // Map size
    height?: number;
    tileSize?: number; // Tile size
    minesCount?: number;
    container?: HTMLElement | string;
}
declare class Map {
    constructor(options?: IMapOptions);
    config({ width, height, tileSize, minesCount, container, }?: IMapOptions, reset?: boolean): void;
    reset(): void;
}

相关推荐

  1. 更新 Node.jsnpm 使用 nvm

    2024-07-20 18:28:04       65 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-20 18:28:04       123 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-20 18:28:04       131 阅读
  3. 在Django里面运行非项目文件

    2024-07-20 18:28:04       109 阅读
  4. Python语言-面向对象

    2024-07-20 18:28:04       117 阅读

热门阅读

  1. 编织文字的魔法:探索WebKit的CSS文本效果

    2024-07-20 18:28:04       31 阅读
  2. c++判断路径是否存在,判断文件夹是否存在

    2024-07-20 18:28:04       24 阅读
  3. Python数据类型转换:掌握数据形态的转换艺术

    2024-07-20 18:28:04       32 阅读
  4. Spring Boot与JPA:无缝集成,轻松管理数据库】

    2024-07-20 18:28:04       28 阅读
  5. 分享遇到的异步问题合集

    2024-07-20 18:28:04       26 阅读
  6. 【高考志愿】音乐与舞蹈学

    2024-07-20 18:28:04       29 阅读
  7. B端产品方向(五)

    2024-07-20 18:28:04       24 阅读
  8. Canvas总结二

    2024-07-20 18:28:04       29 阅读
  9. 二叉树---从中序与后序遍历序列构造二叉树

    2024-07-20 18:28:04       26 阅读