Spaces:
Running
Running
File size: 18,769 Bytes
198aef4 |
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 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sun Runner - Escape del Sol</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
#gameCanvas {
background-color: #87CEEB;
border: 4px solid #1E3A8A;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.sun {
background: radial-gradient(circle at 30% 30%, #FDB813, #FDB813 30%, #FCAF17 40%, #F6961E 60%, #E46B2C);
box-shadow: 0 0 100px #FDB813;
}
.jump-animation {
animation: jump 0.5s ease-out;
}
@keyframes jump {
0% { transform: translateY(0); }
50% { transform: translateY(-100px); }
100% { transform: translateY(0); }
}
.game-over {
animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
10%, 90% { transform: translate3d(-1px, 0, 0); }
20%, 80% { transform: translate3d(2px, 0, 0); }
30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
40%, 60% { transform: translate3d(4px, 0, 0); }
}
.cloud {
background: radial-gradient(circle at 30% 30%, white, white 80%, rgba(255,255,255,0.8) 100%);
border-radius: 50%;
}
.parallax {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20" viewBox="0 0 100 20"><path d="M0,10 C20,15 30,5 50,10 S80,5 100,10" fill="none" stroke="%23FFFFFF" stroke-width="1"/></svg>');
opacity: 0.3;
}
</style>
</head>
<body class="bg-gray-900 h-screen flex flex-col items-center justify-center font-mono overflow-hidden">
<div class="absolute top-0 w-full h-16 bg-gradient-to-b from-gray-900 to-transparent z-10"></div>
<h1 class="text-4xl font-bold mb-4 text-white tracking-wider">SUN RUNNER</h1>
<h2 class="text-xl text-yellow-200 mb-4">Escapa del sol poniente</h2>
<div class="relative">
<div id="sun" class="sun absolute rounded-full w-24 h-24 -top-12 -right-12 z-20"></div>
<!-- Men煤 principal -->
<div id="mainMenu" class="absolute inset-0 flex flex-col items-center justify-center bg-black bg-opacity-70 z-30 transition-opacity duration-500">
<div class="bg-gray-800 p-8 rounded-lg max-w-md w-full text-center">
<h3 class="text-2xl text-yellow-300 font-bold mb-4">Instrucciones</h3>
<p class="text-gray-200 mb-6">隆El sol se est谩 poniendo y te est谩 alcanzando! Corre hacia la derecha evitando los obst谩culos.</p>
<p class="text-gray-300 mb-6"><span class="font-bold text-yellow-300">Controles:</span><br>SPACE para saltar<br>Tambi茅n puedes hacer click/tocar la pantalla</p>
<p class="text-sm text-gray-400 mb-6">
<span id="highScoreDisplay" class="block text-yellow-200">Mejor puntuaci贸n: 0</span>
</p>
<button id="startButton" class="bg-yellow-500 hover:bg-yellow-400 text-gray-900 font-bold py-3 px-6 rounded-full transition-all transform hover:scale-105 focus:outline-none">
隆Comenzar!
</button>
</div>
</div>
<!-- Pantalla de Game Over -->
<div id="gameOverMenu" class="absolute inset-0 flex flex-col items-center justify-center bg-black bg-opacity-70 z-30 hidden">
<div class="bg-gray-800 p-8 rounded-lg max-w-md w-full text-center">
<h3 class="text-2xl text-red-400 font-bold mb-4">隆Has sido alcanzado!</h3>
<p class="text-4xl text-yellow-200 font-bold mb-6" id="scoreDisplay">0</p>
<p class="text-gray-300 mb-6">隆Int茅ntalo de nuevo para mejorar tu puntuaci贸n!</p>
<button id="restartButton" class="bg-yellow-500 hover:bg-yellow-400 text-gray-900 font-bold py-3 px-6 rounded-full transition-all transform hover:scale-105 focus:outline-none">
Reintentar
</button>
</div>
</div>
<canvas id="gameCanvas" width="800" height="400" class="relative z-10"></canvas>
<!-- Nubes de fondo -->
<div class="absolute top-20 left-20 cloud w-32 h-16 opacity-70"></div>
<div class="absolute top-40 right-40 cloud w-24 h-12 opacity-60"></div>
<div class="absolute top-80 left-40 cloud w-20 h-10 opacity-50"></div>
</div>
<div class="absolute bottom-0 w-full h-16 bg-gradient-to-t from-gray-900 to-transparent z-10"></div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const canvas = document.getElementById('gameCanvas');
const ctx = canvas.getContext('2d');
const startButton = document.getElementById('startButton');
const restartButton = document.getElementById('restartButton');
const mainMenu = document.getElementById('mainMenu');
const gameOverMenu = document.getElementById('gameOverMenu');
const scoreDisplay = document.getElementById('scoreDisplay');
const highScoreDisplay = document.getElementById('highScoreDisplay');
const sunElement = document.getElementById('sun');
// Variables del juego
let gameRunning = false;
let score = 0;
let highScore = localStorage.getItem('highScore') || 0;
let animationFrameId;
let gameSpeed = 5;
let sunSpeed = 2;
let obstacles = [];
let clouds = [];
let groundHeight = 50;
let parallaxOffset = 0;
// Posici贸n del personaje
const player = {
x: 100,
y: canvas.height - groundHeight - 50,
width: 40,
height: 50,
velocityY: 0,
jumping: false,
jumpPower: 15,
gravity: 0.7
};
// Actualizar la mejor puntuaci贸n mostrada
highScoreDisplay.textContent = `Mejor puntuaci贸n: ${highScore}`;
// Configurar el personaje del juego
function drawPlayer() {
ctx.fillStyle = '#4B5563';
ctx.fillRect(player.x, player.y - 30, player.width, 10); // Sombrero
ctx.fillStyle = '#1E40AF';
ctx.fillRect(player.x, player.y - 20, player.width, player.height); // Cuerpo
ctx.fillStyle = '#9CA3AF';
ctx.fillRect(player.x + 10, player.y, 5, 10); // Pierna izquierda
ctx.fillRect(player.x + 25, player.y, 5, 10); // Pierna derecha
ctx.fillStyle = '#F59E0B';
ctx.fillRect(player.x + 15, player.y + 10, 10, 5); // Cintur贸n
}
// Dibujar el terreno
function drawGround() {
// Suelo principal
ctx.fillStyle = '#374151';
ctx.fillRect(0, canvas.height - groundHeight, canvas.width, groundHeight);
// Detalles del terreno
ctx.fillStyle = '#1F2937';
for (let i = 0; i < canvas.width; i += 50) {
ctx.fillRect(i, canvas.height - groundHeight, 30, 5);
}
// Efecto parallax
ctx.save();
ctx.translate(-parallaxOffset % 100, 0);
for (let i = -100; i < canvas.width + 100; i += 100) {
ctx.fillStyle = '#1E293B';
ctx.beginPath();
ctx.moveTo(i, canvas.height - groundHeight);
ctx.bezierCurveTo(i + 25, canvas.height - groundHeight - 10,
i + 75, canvas.height - groundHeight + 5,
i + 100, canvas.height - groundHeight);
ctx.fill();
}
ctx.restore();
}
// Generar obst谩culos
function generateObstacle() {
if (Math.random() < 0.02 && obstacles.length < 3) {
const types = ['rock', 'cactus'];
const type = types[Math.floor(Math.random() * types.length)];
const height = type === 'rock' ? 30 : 50;
obstacles.push({
x: canvas.width,
y: canvas.height - groundHeight - height,
width: type === 'rock' ? 50 : 30,
height: height,
type: type
});
}
}
// Dibujar obst谩culos
function drawObstacles() {
obstacles.forEach(obstacle => {
if (obstacle.type === 'rock') {
ctx.fillStyle = '#6B7280';
ctx.beginPath();
ctx.arc(obstacle.x + 25, obstacle.y + 25, 25, 0, Math.PI * 2);
ctx.fill();
} else { // cactus
ctx.fillStyle = '#10B981';
ctx.fillRect(obstacle.x, obstacle.y, obstacle.width, obstacle.height);
ctx.fillRect(obstacle.x - 5, obstacle.y, 10, obstacle.height * 0.7);
ctx.fillRect(obstacle.x + obstacle.width - 5, obstacle.y, 10, obstacle.height * 0.5);
}
});
}
// Mover y eliminar obst谩culos
function updateObstacles() {
for (let i = obstacles.length - 1; i >= 0; i--) {
obstacles[i].x -= gameSpeed;
// Eliminar obst谩culos fuera de la pantalla
if (obstacles[i].x + obstacles[i].width < 0) {
obstacles.splice(i, 1);
score += 10;
}
// Detecci贸n de colisiones
if (player.x < obstacles[i].x + obstacles[i].width &&
player.x + player.width > obstacles[i].x &&
player.y < obstacles[i].y + obstacles[i].height &&
player.y + player.height > obstacles[i].y) {
gameOver();
}
}
}
// Generar nubes de fondo
function generateClouds() {
if (Math.random() < 0.01 && clouds.length < 5) {
clouds.push({
x: canvas.width,
y: Math.random() * (canvas.height / 3),
width: 60 + Math.random() * 60,
speed: 1 + Math.random() * 2
});
}
}
// Dibujar nubes
function drawClouds() {
clouds.forEach(cloud => {
ctx.fillStyle = 'rgba(255, 255, 255, 0.7)';
ctx.beginPath();
ctx.arc(cloud.x + cloud.width * 0.3, cloud.y + cloud.width * 0.1, cloud.width * 0.2, 0, Math.PI * 2);
ctx.arc(cloud.x + cloud.width * 0.6, cloud.y + cloud.width * 0.1, cloud.width * 0.3, 0, Math.PI * 2);
ctx.arc(cloud.x + cloud.width * 0.2, cloud.y + cloud.width * 0.2, cloud.width * 0.2, 0, Math.PI * 2);
ctx.fill();
});
}
// Mover y eliminar nubes
function updateClouds() {
for (let i = clouds.length - 1; i >= 0; i--) {
clouds[i].x -= clouds[i].speed;
if (clouds[i].x + clouds[i].width * 1.5 < 0) {
clouds.splice(i, 1);
}
}
}
// Actualizar posici贸n del jugador y gravedad
function updatePlayer() {
// Gravedad
player.velocityY += player.gravity;
player.y += player.velocityY;
// Limitar al suelo
if (player.y >= canvas.height - groundHeight - player.height) {
player.y = canvas.height - groundHeight - player.height;
player.velocityY = 0;
player.jumping = false;
}
}
// Hacer que el jugador salte
function jump() {
if (!player.jumping) {
player.velocityY = -player.jumpPower;
player.jumping = true;
document.getElementById('gameCanvas').classList.add('jump-animation');
setTimeout(() => {
document.getElementById('gameCanvas').classList.remove('jump-animation');
}, 500);
}
}
// Actualizar la posici贸n del sol
function updateSunPosition() {
const sunX = -30 + (canvas.width - player.x) * 0.3;
const sunY = -30 + (canvas.height - player.y) * 0.1;
sunElement.style.transform = `translate(${sunX}px, ${sunY}px)`;
// Comprobar si el sol alcanz贸 al jugador
if (player.x < 50) {
gameOver();
}
}
// Actualizar la velocidad del sol (dificultad progresiva)
function updateSunSpeed() {
sunSpeed = 2 + Math.floor(score / 500);
gameSpeed = 5 + Math.floor(score / 300);
}
// Funci贸n de Game Over
function gameOver() {
gameRunning = false;
cancelAnimationFrame(animationFrameId);
// Actualizar mejor puntuaci贸n
if (score > highScore) {
highScore = score;
localStorage.setItem('highScore', highScore);
highScoreDisplay.textContent = `Mejor puntuaci贸n: ${highScore}`;
}
scoreDisplay.textContent = score;
gameOverMenu.classList.remove('hidden');
document.getElementById('gameCanvas').classList.add('game-over');
}
// Reiniciar el juego
function resetGame() {
score = 0;
gameSpeed = 5;
sunSpeed = 2;
obstacles = [];
clouds = [];
player.y = canvas.height - groundHeight - player.height;
player.velocityY = 0;
player.jumping = false;
document.getElementById('gameCanvas').classList.remove('game-over');
gameOverMenu.classList.add('hidden');
}
// Bucle principal del juego
function gameLoop() {
// Limpiar el canvas
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Fondo gradiente
const gradient = ctx.createLinearGradient(0, 0, 0, canvas.height);
gradient.addColorStop(0, '#1E3A8A');
gradient.addColorStop(0.4, '#2563EB');
gradient.addColorStop(1, '#7DD3FC');
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, canvas.width, canvas.height);
// Dibujar elementos del juego
drawClouds();
drawGround();
drawObstacles();
drawPlayer();
// Actualizar l贸gica del juego
updatePlayer();
updateObstacles();
updateClouds();
updateSunPosition();
updateSunSpeed();
// Generar nuevos elementos
generateObstacle();
generateClouds();
// Actualizar posici贸n parallax
parallaxOffset += gameSpeed * 0.5;
// Continuar el bucle si el juego est谩 en marcha
if (gameRunning) {
animationFrameId = requestAnimationFrame(gameLoop);
}
}
// Event listeners
startButton.addEventListener('click', () => {
resetGame();
mainMenu.classList.add('opacity-0');
setTimeout(() => {
mainMenu.classList.add('hidden');
gameRunning = true;
gameLoop();
}, 500);
});
restartButton.addEventListener('click', () => {
resetGame();
gameOverMenu.classList.add('hidden');
gameRunning = true;
gameLoop();
});
// Controles del juego
document.addEventListener('keydown', (e) => {
if (e.code === 'Space' && gameRunning) {
e.preventDefault();
jump();
}
});
canvas.addEventListener('click', () => {
if (gameRunning) {
jump();
}
});
// Efecto de movimiento inicial del sol
setTimeout(() => {
sunElement.style.transition = 'transform 0.5s ease-out';
}, 1000);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=lucks17/sun-runner" style="color: #fff;text-decoration: underline;" target="_blank" >馃К Remix</a></p></body>
</html> |