
本文将指导您如何在JavaScript游戏中优雅地展示高分榜。通过利用CSS的`display`属性和JavaScript动态控制DOM元素,您可以在游戏结束后将游戏界面切换为纯粹的高分榜页面,实现流畅的视图转换,而无需重新加载HTML文件,从而提升用户体验。
在现代Web游戏中,提供一个清晰且易于访问的高分榜是提升玩家体验的关键一环。传统方法可能涉及加载一个全新的HTML页面来显示分数,但这会带来视觉上的中断和额外的网络请求。本教程将介绍一种更流畅、更具交互性的方法,即在同一HTML页面内,通过巧妙地利用CSS和JavaScript来切换游戏界面与高分榜的显示。
实现这一目标的核心是使用CSS的display属性来控制不同内容区域的可见性。我们将把游戏区域和高分榜区域分别放置在独立的HTML容器中。在游戏进行时,高分榜容器保持隐藏;当游戏结束需要显示高分榜时,我们通过JavaScript来隐藏游戏容器,同时显示高分榜容器。
首先,我们需要调整HTML结构,确保高分榜有自己的独立容器,并且这个容器可以被方便地控制显示与隐藏。
立即学习“Java免费学习笔记(深入)”;
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doodle Jump 高分榜</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game-container">
<div class="grid">
<div class="volumeIcon"></div>
</div>
</div>
<div class="high-scores-container">
<h1>高分榜</h1>
<ol id="highScores"></ol>
<!-- 可以添加返回主菜单或重新开始按钮 -->
</div>
<script src="app.js"></script>
</body>
</html>在这个结构中:
接下来,我们需要为这两个容器定义初始样式。默认情况下,高分榜容器应该是隐藏的。
/* ... 现有CSS样式 ... */
.game-container {
/* 确保游戏容器占据所需空间 */
width: 400px; /* 与 .grid 宽度保持一致 */
height: 600px; /* 与 .grid 高度保持一致 */
margin: 0 auto; /* 居中显示 */
position: relative; /* 如果游戏内有绝对定位元素,此容器也需要 */
}
.grid {
width: 400px;
height: 600px;
background-color: yellow;
position: relative;
font-size: 200px;
text-align: center;
background-image: url(bluesky_level1.gif);
background-size: contain;
background-repeat: no-repeat;
background-size: 400px 600px;
margin-right: auto;
margin-left: auto;
}
.high-scores-container {
display: none; /* 默认隐藏高分榜容器 */
width: 400px; /* 与游戏区域保持一致,或根据需要调整 */
height: 600px;
margin: 0 auto;
text-align: center;
padding-top: 50px; /* 顶部留白 */
background-color: #f0f0f0; /* 高分榜背景色 */
font-family: "Georgia", "Times New Roman", serif;
color: #333;
box-sizing: border-box; /* 确保padding不增加总宽度 */
}
.high-scores-container h1 {
font-size: 48px;
margin-bottom: 30px;
color: #4CAF50; /* 标题颜色 */
}
#highScores {
list-style-type: none; /* 移除默认列表点 */
padding: 0;
font-size: 30px;
line-height: 1.6;
}
#highScores li {
margin-bottom: 10px;
color: #555;
}注意,我们将.grid包裹在.game-container中,这样可以更方便地控制整个游戏区域的显示与隐藏。.high-scores-container 初始设置为 display: none;。
现在,我们需要修改JavaScript代码,以便在游戏结束时执行视图切换。
document.addEventListener('DOMContentLoaded', () => {
const grid = document.querySelector('.grid');
const gameContainer = document.querySelector('.game-container'); // 获取游戏容器
const highScoresContainer = document.querySelector('.high-scores-container'); // 获取高分榜容器
const doodler = document.createElement('div');
// ... 其他变量和函数定义 ...
const NO_OF_HIGH_SCORES = 10;
const HIGH_SCORES = 'highScores';
// ... createDoodler, control, Platform, createPlatforms, movePlatforms, jump, fall, moveLeft, moveRight, moveStraight 函数 ...
function gameOver() {
console.log('GAME OVER');
isGameOver = true;
// 清理所有计时器
clearInterval(upTimerid);
clearInterval(downTimerId);
clearInterval(leftTimerId);
clearInterval(rightTimerId);
// 暂停音乐
if (context && typeof context.pause === 'function') {
context.pause();
}
// 清空游戏网格内容 (如果需要,可以选择保留一些最终得分信息)
while (grid.firstChild) {
grid.removeChild(grid.firstChild);
}
// grid.innerHTML = `你的分数: ${score}`; // 可以在这里显示最终分数
// 隐藏游戏容器
gameContainer.style.display = 'none';
// 检查并显示高分榜
checkHighScore();
}
function saveHighScore(score, highScores) {
const name = prompt('恭喜你获得高分!请输入你的名字:');
const newScore = { score, name: name || '匿名玩家' }; // 如果用户未输入,则设为匿名玩家
highScores.push(newScore);
highScores.sort((a, b) => b.score - a.score);
highScores.splice(NO_OF_HIGH_SCORES);
localStorage.setItem(HIGH_SCORES, JSON.stringify(highScores));
}
function checkHighScore() {
const highScores = JSON.parse(localStorage.getItem(HIGH_SCORES)) ?? [];
// 确保 highScores 是一个数组,即使 localStorage 中没有数据
const lowestScore = highScores.length < NO_OF_HIGH_SCORES ? 0 : highScores[NO_OF_HIGH_SCORES - 1].score;
if (score > lowestScore) {
saveHighScore(score, highScores);
}
showHighScores(); // 无论是否创造新高,都显示高分榜
}
function showHighScores() {
const highScores = JSON.parse(localStorage.getItem(HIGH_SCORES)) ?? [];
const highScoreList = document.getElementById('highScores');
// 清空旧列表
highScoreList.innerHTML = '';
// 填充新的高分榜数据
highScores.forEach((s, index) => {
const listItem = document.createElement('li');
listItem.textContent = `${index + 1}. ${s.name} - ${s.score}`;
highScoreList.appendChild(listItem);
});
// 隐藏游戏容器,显示高分榜容器
gameContainer.style.display = 'none';
highScoresContainer.style.display = 'block'; // 或者 'flex'/'grid' 根据你的布局需求
}
function start() {
if (!isGameOver) {
// 确保在游戏开始时,高分榜容器是隐藏的
highScoresContainer.style.display = 'none';
gameContainer.style.display = 'block'; // 确保游戏容器是显示的
createPlatforms();
createDoodler();
setInterval(movePlatforms, 30);
jump();
document.addEventListener('keyup', control);
}
}
// ... 其他事件监听器 ...
// 游戏初始化时调用start
start();
});通过上述方法,我们成功地在同一个HTML页面内实现了游戏界面与高分榜的无缝切换。这种方法不仅提升了用户体验,避免了页面加载的延迟,也使得整个Web应用更像一个单页应用(SPA)。这种技术广泛应用于各种Web交互式应用中,是前端开发中实现视图管理的基本且高效的策略。
以上就是JavaScript游戏高分榜的优雅展示与页面切换实现的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号