一个简单点的js的h5页面实现地铁快跑的小游戏_Math

以下是一个简化版的"地铁快跑"小游戏H5页面实现。这个游戏包含基本的角色跳跃、障碍物生成和计分系统,使用Canvas绘图技术实现。

完整源码

<!DOCTYPE html>
<html lang="zh-CN">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"><title>地铁快跑</title><style>body {margin: 0;padding: 0;display: flex;justify-content: center;align-items: center;height: 100vh;background-color: #000;overflow: hidden;}canvas {display: block;background-color: #f0f0f0;}.game-container {position: relative;}.game-info {position: absolute;top: 10px;left: 10px;color: white;font-family: Arial, sans-serif;font-size: 18px;font-weight: bold;text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);z-index: 10;}.game-over {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);background-color: rgba(0, 0, 0, 0.7);color: white;padding: 20px;text-align: center;border-radius: 10px;display: none;z-index: 20;}.game-over h2 {margin-top: 0;}.start-screen {position: absolute;top: 0;left: 0;right: 0;bottom: 0;background-color: rgba(0, 0, 0, 0.8);display: flex;flex-direction: column;justify-content: center;align-items: center;color: white;font-family: Arial, sans-serif;z-index: 30;}.start-screen h1 {font-size: 36px;margin-bottom: 20px;}.start-button {background-color: #ff5722;color: white;border: none;padding: 10px 20px;font-size: 18px;border-radius: 5px;cursor: pointer;transition: background-color 0.3s;}.start-button:hover {background-color: #f4511e;}.restart-button {background-color: #ff5722;color: white;border: none;padding: 10px 20px;font-size: 18px;border-radius: 5px;cursor: pointer;transition: background-color 0.3s;}.restart-button:hover {background-color: #f4511e;}</style>
</head>
<body><div class="game-container"><canvas id="gameCanvas"></canvas><div class="game-info"><div id="scoreDisplay">分数: 0</div><div id="highScoreDisplay">最高分: 0</div></div><div class="game-over" id="gameOverScreen"><h2>游戏结束</h2><p>你的分数: <span id="finalScore">0</span></p><p>最高分: <span id="finalHighScore">0</span></p><button class="restart-button" id="restartButton">重新开始</button></div><div class="start-screen" id="startScreen"><h1>地铁快跑</h1><p>点击或按空格键跳跃</p><button class="start-button" id="startButton">开始游戏</button></div></div><script>// 游戏常量const GAME_WIDTH = 800;const GAME_HEIGHT = 450;const GRAVITY = 0.8;const JUMP_FORCE = -15;const PLAYER_WIDTH = 50;const PLAYER_HEIGHT = 70;const OBSTACLE_WIDTH = 30;const OBSTACLE_HEIGHT = 60;const BACKGROUND_SPEED = 3;const INITIAL_OBSTACLE_SPEED = 5;const MAX_OBSTACLE_SPEED = 12;const OBSTACLE_SPEED_INCREMENT = 0.001;const OBSTACLE_MIN_DISTANCE = 200;const OBSTACLE_MAX_DISTANCE = 500;// 游戏状态let gameState = {running: false,score: 0,highScore: localStorage.getItem('subwaySurfersHighScore') || 0,player: {x: 100,y: GAME_HEIGHT - PLAYER_HEIGHT - 100,width: PLAYER_WIDTH,height: PLAYER_HEIGHT,velocityY: 0,isJumping: false},obstacles: [],background: {x: 0,speed: BACKGROUND_SPEED},obstacleSpeed: INITIAL_OBSTACLE_SPEED,lastObstaclePosition: 0};// 获取DOM元素const canvas = document.getElementById('gameCanvas');const ctx = canvas.getContext('2d');const scoreDisplay = document.getElementById('scoreDisplay');const highScoreDisplay = document.getElementById('highScoreDisplay');const gameOverScreen = document.getElementById('gameOverScreen');const finalScore = document.getElementById('finalScore');const finalHighScore = document.getElementById('finalHighScore');const restartButton = document.getElementById('restartButton');const startScreen = document.getElementById('startScreen');const startButton = document.getElementById('startButton');// 设置Canvas尺寸canvas.width = GAME_WIDTH;canvas.height = GAME_HEIGHT;// 更新分数显示function updateScoreDisplay() {scoreDisplay.textContent = `分数: ${Math.floor(gameState.score)}`;highScoreDisplay.textContent = `最高分: ${gameState.highScore}`;}// 绘制玩家function drawPlayer() {const { x, y, width, height } = gameState.player;// 绘制玩家主体ctx.fillStyle = '#ff5722';ctx.fillRect(x, y, width, height);// 绘制头部ctx.fillStyle = '#ffc107';ctx.beginPath();ctx.arc(x + width / 2, y + 20, 15, 0, Math.PI * 2);ctx.fill();// 绘制眼睛ctx.fillStyle = 'white';ctx.beginPath();ctx.arc(x + width / 2 - 5, y + 18, 3, 0, Math.PI * 2);ctx.arc(x + width / 2 + 5, y + 18, 3, 0, Math.PI * 2);ctx.fill();// 绘制瞳孔ctx.fillStyle = 'black';ctx.beginPath();ctx.arc(x + width / 2 - 5, y + 18, 1, 0, Math.PI * 2);ctx.arc(x + width / 2 + 5, y + 18, 1, 0, Math.PI * 2);ctx.fill();// 绘制手臂ctx.fillStyle = '#ff5722';ctx.fillRect(x - 5, y + 30, 10, 30);ctx.fillRect(x + width - 5, y + 30, 10, 30);// 绘制腿部ctx.fillStyle = '#2196f3';ctx.fillRect(x + 5, y + height, 15, 20);ctx.fillRect(x + width - 20, y + height, 15, 20);}// 绘制障碍物function drawObstacles() {gameState.obstacles.forEach(obstacle => {// 绘制障碍物主体ctx.fillStyle = '#4caf50';ctx.fillRect(obstacle.x, obstacle.y, obstacle.width, obstacle.height);// 绘制障碍物顶部ctx.fillStyle = '#388e3c';ctx.fillRect(obstacle.x, obstacle.y, obstacle.width, 10);// 绘制障碍物细节ctx.fillStyle = '#212121';ctx.fillRect(obstacle.x + 5, obstacle.y + 20, 5, 30);ctx.fillRect(obstacle.x + 20, obstacle.y + 20, 5, 30);});}// 绘制背景function drawBackground() {// 绘制天空ctx.fillStyle = '#87ceeb';ctx.fillRect(0, 0, GAME_WIDTH, GAME_HEIGHT * 0.7);// 绘制地面ctx.fillStyle = '#a0522d';ctx.fillRect(0, GAME_HEIGHT * 0.7, GAME_WIDTH, GAME_HEIGHT * 0.3);// 绘制轨道ctx.fillStyle = '#212121';ctx.fillRect(0, GAME_HEIGHT * 0.75, GAME_WIDTH, 20);// 绘制轨道上的枕木ctx.fillStyle = '#8b4513';for (let i = Math.floor(-gameState.background.x / 50); i < GAME_WIDTH / 50 + 1; i++) {ctx.fillRect((i * 50 + gameState.background.x) % GAME_WIDTH, GAME_HEIGHT * 0.75 - 10, 40, 40);}// 绘制远处的建筑物ctx.fillStyle = '#607d8b';ctx.fillRect(0, GAME_HEIGHT * 0.4, GAME_WIDTH, GAME_HEIGHT * 0.3);// 绘制建筑物窗户ctx.fillStyle = '#ffeb3b';for (let i = 0; i < 20; i++) {for (let j = 0; j < 5; j++) {ctx.fillRect((i * 40 + gameState.background.x * 0.5) % GAME_WIDTH, GAME_HEIGHT * 0.4 + 10 + j * 30, 20, 20);}}}// 更新玩家位置function updatePlayer(deltaTime) {const { player } = gameState;// 应用重力player.velocityY += GRAVITY;player.y += player.velocityY;// 限制玩家在地面上if (player.y > GAME_HEIGHT - player.height - 100) {player.y = GAME_HEIGHT - player.height - 100;player.velocityY = 0;player.isJumping = false;}}// 生成障碍物function generateObstacles() {if (gameState.obstacles.length === 0) {// 游戏开始时生成第一个障碍物gameState.obstacles.push({x: GAME_WIDTH,y: GAME_HEIGHT - OBSTACLE_HEIGHT - 100,width: OBSTACLE_WIDTH,height: OBSTACLE_HEIGHT});gameState.lastObstaclePosition = GAME_WIDTH;} else {// 计算最后一个障碍物的位置const lastObstacle = gameState.obstacles[gameState.obstacles.length - 1];// 随机决定是否生成新障碍物if (GAME_WIDTH - lastObstacle.x > gameState.lastObstaclePosition + Math.random() * (OBSTACLE_MAX_DISTANCE - OBSTACLE_MIN_DISTANCE) + OBSTACLE_MIN_DISTANCE) {gameState.obstacles.push({x: GAME_WIDTH,y: GAME_HEIGHT - OBSTACLE_HEIGHT - 100,width: OBSTACLE_WIDTH,height: OBSTACLE_HEIGHT});gameState.lastObstaclePosition = GAME_WIDTH - lastObstacle.x;}}}// 更新障碍物位置function updateObstacles(deltaTime) {// 增加障碍物速度gameState.obstacleSpeed = Math.min(gameState.obstacleSpeed + OBSTACLE_SPEED_INCREMENT * deltaTime, MAX_OBSTACLE_SPEED);// 移动所有障碍物gameState.obstacles.forEach(obstacle => {obstacle.x -= gameState.obstacleSpeed;});// 移除离开屏幕的障碍物gameState.obstacles = gameState.obstacles.filter(obstacle => {return obstacle.x + obstacle.width > 0;});}// 更新背景function updateBackground(deltaTime) {gameState.background.x -= gameState.background.speed;if (gameState.background.x < -50) {gameState.background.x = 0;}}// 检测碰撞function checkCollision() {const { player } = gameState;for (let i = 0; i < gameState.obstacles.length; i++) {const obstacle = gameState.obstacles[i];// 简单的矩形碰撞检测if (player.x < obstacle.x + obstacle.width &&player.x + player.width > obstacle.x &&player.y < obstacle.y + obstacle.height &&player.y + player.height > obstacle.y) {return true; // 碰撞发生}}return false; // 没有碰撞}// 游戏结束function gameOver() {gameState.running = false;// 更新最高分if (Math.floor(gameState.score) > gameState.highScore) {gameState.highScore = Math.floor(gameState.score);localStorage.setItem('subwaySurfersHighScore', gameState.highScore);}// 显示游戏结束屏幕finalScore.textContent = Math.floor(gameState.score);finalHighScore.textContent = gameState.highScore;gameOverScreen.style.display = 'block';}// 重置游戏function resetGame() {gameState = {running: true,score: 0,highScore: gameState.highScore,player: {x: 100,y: GAME_HEIGHT - PLAYER_HEIGHT - 100,width: PLAYER_WIDTH,height: PLAYER_HEIGHT,velocityY: 0,isJumping: false},obstacles: [],background: {x: 0,speed: BACKGROUND_SPEED},obstacleSpeed: INITIAL_OBSTACLE_SPEED,lastObstaclePosition: 0};updateScoreDisplay();gameOverScreen.style.display = 'none';startScreen.style.display = 'none';// 开始游戏循环lastTime = performance.now();requestAnimationFrame(gameLoop);}// 玩家跳跃function jump() {if (!gameState.player.isJumping && gameState.running) {gameState.player.velocityY = JUMP_FORCE;gameState.player.isJumping = true;}}// 键盘事件处理document.addEventListener('keydown', function(event) {if (event.code === 'Space') {if (!gameState.running && gameOverScreen.style.display === 'block') {resetGame();} else if (!gameState.running && startScreen.style.display === 'block') {resetGame();} else {jump();}}});// 触摸事件处理canvas.addEventListener('touchstart', function(event) {event.preventDefault();if (!gameState.running && gameOverScreen.style.display === 'block') {resetGame();} else if (!gameState.running && startScreen.style.display === 'block') {resetGame();} else {jump();}});// 按钮点击事件startButton.addEventListener('click', resetGame);restartButton.addEventListener('click', resetGame);// 游戏循环变量let lastTime = 0;// 游戏主循环function gameLoop(timestamp) {if (!gameState.running) return;const deltaTime = timestamp - lastTime;lastTime = timestamp;// 清空画布ctx.clearRect(0, 0, GAME_WIDTH, GAME_HEIGHT);// 更新游戏状态updateBackground(deltaTime);updatePlayer(deltaTime);generateObstacles();updateObstacles(deltaTime);gameState.score += deltaTime * 0.01;// 绘制游戏元素drawBackground();drawObstacles();drawPlayer();// 更新分数显示updateScoreDisplay();// 检测碰撞if (checkCollision()) {gameOver();}// 继续游戏循环requestAnimationFrame(gameLoop);}// 初始化游戏updateScoreDisplay();</script>
</body>
</html>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
  • 228.
  • 229.
  • 230.
  • 231.
  • 232.
  • 233.
  • 234.
  • 235.
  • 236.
  • 237.
  • 238.
  • 239.
  • 240.
  • 241.
  • 242.
  • 243.
  • 244.
  • 245.
  • 246.
  • 247.
  • 248.
  • 249.
  • 250.
  • 251.
  • 252.
  • 253.
  • 254.
  • 255.
  • 256.
  • 257.
  • 258.
  • 259.
  • 260.
  • 261.
  • 262.
  • 263.
  • 264.
  • 265.
  • 266.
  • 267.
  • 268.
  • 269.
  • 270.
  • 271.
  • 272.
  • 273.
  • 274.
  • 275.
  • 276.
  • 277.
  • 278.
  • 279.
  • 280.
  • 281.
  • 282.
  • 283.
  • 284.
  • 285.
  • 286.
  • 287.
  • 288.
  • 289.
  • 290.
  • 291.
  • 292.
  • 293.
  • 294.
  • 295.
  • 296.
  • 297.
  • 298.
  • 299.
  • 300.
  • 301.
  • 302.
  • 303.
  • 304.
  • 305.
  • 306.
  • 307.
  • 308.
  • 309.
  • 310.
  • 311.
  • 312.
  • 313.
  • 314.
  • 315.
  • 316.
  • 317.
  • 318.
  • 319.
  • 320.
  • 321.
  • 322.
  • 323.
  • 324.
  • 325.
  • 326.
  • 327.
  • 328.
  • 329.
  • 330.
  • 331.
  • 332.
  • 333.
  • 334.
  • 335.
  • 336.
  • 337.
  • 338.
  • 339.
  • 340.
  • 341.
  • 342.
  • 343.
  • 344.
  • 345.
  • 346.
  • 347.
  • 348.
  • 349.
  • 350.
  • 351.
  • 352.
  • 353.
  • 354.
  • 355.
  • 356.
  • 357.
  • 358.
  • 359.
  • 360.
  • 361.
  • 362.
  • 363.
  • 364.
  • 365.
  • 366.
  • 367.
  • 368.
  • 369.
  • 370.
  • 371.
  • 372.
  • 373.
  • 374.
  • 375.
  • 376.
  • 377.
  • 378.
  • 379.
  • 380.
  • 381.
  • 382.
  • 383.
  • 384.
  • 385.
  • 386.
  • 387.
  • 388.
  • 389.
  • 390.
  • 391.
  • 392.
  • 393.
  • 394.
  • 395.
  • 396.
  • 397.
  • 398.
  • 399.
  • 400.
  • 401.
  • 402.
  • 403.
  • 404.
  • 405.
  • 406.
  • 407.
  • 408.
  • 409.
  • 410.
  • 411.
  • 412.
  • 413.
  • 414.
  • 415.
  • 416.
  • 417.
  • 418.
  • 419.
  • 420.
  • 421.
  • 422.
  • 423.
  • 424.
  • 425.
  • 426.
  • 427.
  • 428.
  • 429.
  • 430.
  • 431.
  • 432.
  • 433.
  • 434.
  • 435.
  • 436.
  • 437.
  • 438.
  • 439.
  • 440.
  • 441.
  • 442.
  • 443.
  • 444.
  • 445.
  • 446.
  • 447.
  • 448.
  • 449.
  • 450.
  • 451.
  • 452.
  • 453.
  • 454.
  • 455.
  • 456.
  • 457.
  • 458.
  • 459.
  • 460.
  • 461.
  • 462.
  • 463.
  • 464.
  • 465.
  • 466.
  • 467.
  • 468.
  • 469.
  • 470.
  • 471.
  • 472.
  • 473.
  • 474.
  • 475.
  • 476.
  • 477.
  • 478.
  • 479.
  • 480.
  • 481.
  • 482.
  • 483.
  • 484.
  • 485.
  • 486.
  • 487.
  • 488.
  • 489.
  • 490.
  • 491.
  • 492.
  • 493.
  • 494.
  • 495.
  • 496.
  • 497.
  • 498.
  • 499.
  • 500.
  • 501.
  • 502.
  • 503.
  • 504.
  • 505.
  • 506.

这个简化版的"地铁快跑"小游戏包含以下特点:

  1. 基本游戏机制:玩家可以跳跃躲避障碍物
  2. 视觉元素:包括背景、玩家角色和障碍物
  3. 计分系统:根据游戏时间计算分数,并保存最高分
  4. 难度递增:随着游戏进行,障碍物移动速度会逐渐增加
  5. 响应式控制:支持键盘空格键和触摸屏点击跳跃
  6. 游戏状态:开始界面、游戏界面和结束界面

游戏操作很简单:点击"开始游戏"按钮或按空格键开始,然后通过点击或按空格键让角色跳跃,避开障碍物。当角色碰到障碍物时,游戏结束,可以点击"重新开始"按钮再次游戏。

这个实现是简化版的,没有包含原版游戏的所有功能,但已经具备了核心的游戏体验。你可以直接运行代码开始游戏。