Madewithwebsim / K9Wq8c0fXLfPJ3TEN.html
allknowingroger's picture
Upload 55 files
ad1dcd6 verified
raw
history blame
11.2 kB
<html><head><base href="https://websim.ai/vr-fitness-innovator"><title>VR Fitness Innovator: Brainstorm Creative Fitness Games</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.float {
animation: float 3s ease-in-out infinite;
}
</style>
</head>
<body class="bg-gradient-to-br from-blue-500 to-purple-600 text-gray-100 min-h-screen font-sans">
<header class="py-6 relative">
<div class="container mx-auto px-4">
<h1 class="text-4xl font-bold text-center text-white">VR Fitness Innovator πŸ‹οΈβ€β™€οΈπŸ•ΆοΈ</h1>
<p class="mt-2 text-center text-blue-200">Brainstorm Creative Ideas for Virtual Reality Fitness Games</p>
</div>
</header>
<main class="container mx-auto px-4 py-8">
<div class="bg-white rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold mb-4 text-purple-800">Generate VR Fitness Game Ideas</h2>
<form id="vr-fitness-form" method="GET" action="https://websim.ai/vr-fitness-innovator" class="space-y-4">
<div>
<label for="fitness-goal" class="block text-sm font-medium text-gray-700">Primary Fitness Goal:</label>
<select id="fitness-goal" name="goal" class="mt-1 block w-full px-3 py-2 bg-gray-50 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-purple-500 text-gray-900">
<option value="cardio">Cardio</option>
<option value="strength">Strength Training</option>
<option value="flexibility">Flexibility</option>
<option value="balance">Balance and Coordination</option>
</select>
</div>
<div>
<label for="game-theme" class="block text-sm font-medium text-gray-700">Game Theme:</label>
<select id="game-theme" name="theme" class="mt-1 block w-full px-3 py-2 bg-gray-50 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-purple-500 text-gray-900">
<option value="fantasy">Fantasy</option>
<option value="scifi">Sci-Fi</option>
<option value="historical">Historical</option>
<option value="nature">Nature</option>
<option value="urban">Urban</option>
</select>
</div>
<div>
<label for="difficulty" class="block text-sm font-medium text-gray-700">Difficulty Level:</label>
<select id="difficulty" name="difficulty" class="mt-1 block w-full px-3 py-2 bg-gray-50 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-purple-500 text-gray-900">
<option value="beginner">Beginner</option>
<option value="intermediate">Intermediate</option>
<option value="advanced">Advanced</option>
</select>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
Generate VR Fitness Game Idea πŸ’‘
</button>
</div>
</form>
</div>
<div id="result-container" class="bg-white rounded-lg shadow-lg p-6 hidden">
<h2 class="text-2xl font-semibold mb-4 text-purple-800">Your VR Fitness Game Idea</h2>
<div id="game-idea-result" class="space-y-4">
<!-- Game idea will be inserted here -->
</div>
</div>
<div class="mt-8 bg-white rounded-lg shadow-lg p-6">
<h2 class="text-2xl font-semibold mb-4 text-purple-800">VR Fitness Innovation Tips</h2>
<ul class="list-disc list-inside space-y-2 text-gray-700">
<li>Focus on making the experience fun and engaging</li>
<li>Incorporate natural movements that translate well to VR</li>
<li>Consider social elements to encourage motivation</li>
<li>Ensure proper form and safety guidelines are included</li>
<li>Use progression systems to keep players coming back</li>
</ul>
</div>
</main>
<script>
const vrFitnessForm = document.getElementById('vr-fitness-form');
const resultContainer = document.getElementById('result-container');
const gameIdeaResult = document.getElementById('game-idea-result');
vrFitnessForm.addEventListener('submit', function(e) {
e.preventDefault();
const fitnessGoal = document.getElementById('fitness-goal').value;
const gameTheme = document.getElementById('game-theme').value;
const difficulty = document.getElementById('difficulty').value;
generateVRFitnessGame(fitnessGoal, gameTheme, difficulty);
});
function generateVRFitnessGame(goal, theme, difficulty) {
// Show loading state
resultContainer.classList.remove('hidden');
gameIdeaResult.innerHTML = '<div class="flex justify-center"><div class="loader ease-linear rounded-full border-4 border-t-4 border-gray-200 h-12 w-12 mb-4"></div></div>';
// Simulate API call with setTimeout
setTimeout(() => {
const gameIdea = createVRFitnessGame(goal, theme, difficulty);
displayVRFitnessGame(gameIdea);
}, 2000);
}
function createVRFitnessGame(goal, theme, difficulty) {
// This is a simplified game idea generator. In a real application, this would use more sophisticated algorithms or AI.
const gameIdeas = {
cardio: {
fantasy: "Dragon Flight: Soar through magical realms on the back of a dragon, flapping your arms to control flight and dodging obstacles.",
scifi: "Cyber Runner: Sprint through neon-lit futuristic cities, leaping over hover-cars and sliding under laser barriers.",
historical: "Chariot Race Challenge: Compete in ancient Roman chariot races, using arm movements to control your horses and body leans to steer.",
nature: "Rainforest Canopy Glider: Swing from vine to vine in a lush jungle, using full body movements to traverse the treetops.",
urban: "Parkour City: Navigate a bustling cityscape using parkour techniques, vaulting over obstacles and wall-running between buildings."
},
strength: {
fantasy: "Golem Builder: Craft magical golems by lifting and shaping virtual boulders, testing your strength against increasingly large creations.",
scifi: "Mech Warrior Training: Control a giant mech suit in combat, using resistance-based movements to punch, block, and throw objects.",
historical: "Fortress Constructor: Build medieval castles and defenses by lifting and placing heavy stone blocks and operating siege engines.",
nature: "Titan of the Woods: Become a gentle forest giant, uprooting trees to create paths for animals and lifting boulders to dam rivers.",
urban: "Skyscraper Architect: Construct towering buildings by lifting and placing massive steel beams and concrete slabs."
},
flexibility: {
fantasy: "Enchanted Yoga Forest: Practice yoga poses to awaken magical creatures and bring a mystical forest to life.",
scifi: "Zero-G Contortionist: Navigate tight spaces in a space station by bending and twisting your body to fit through uniquely shaped openings.",
historical: "Shaolin Temple Trials: Master the art of Kung Fu by mirroring the fluid movements of ancient masters in a serene temple setting.",
nature: "Ocean Floor Explorer: Dive into the depths and stretch your body to mimic and interact with flexible sea creatures.",
urban: "Neon Ribbon Dancer: Perform mesmerizing ribbon dances amid a cityscape of bright lights, creating beautiful patterns with your movements."
},
balance: {
fantasy: "Wizard's Tightrope: Cross precarious magical bridges between floating islands, balancing yourself and the arcane energies around you.",
scifi: "Asteroid Hopper: Jump between small asteroids in a pivoting asteroid field, using subtle body adjustments to land safely.",
historical: "Samurai Sword Master: Practice the art of Iaido, focusing on precise, balanced movements to perform perfect sword techniques.",
nature: "Mountain Goat Simulator: Navigate treacherous mountain paths as a nimble goat, balancing on narrow ledges and leaping between peaks.",
urban: "Rooftop Tai Chi: Perform Tai Chi moves on narrow beams high above a bustling city, finding inner and outer balance."
}
};
const baseIdea = gameIdeas[goal][theme];
let difficultyModifier = "";
switch(difficulty) {
case "beginner":
difficultyModifier = "The game starts with simple, guided movements and gradually introduces more complex actions.";
break;
case "intermediate":
difficultyModifier = "Players face varied challenges and can customize their experience with different intensity levels.";
break;
case "advanced":
difficultyModifier = "The game features high-intensity workouts, complex movement combinations, and competitive multiplayer modes.";
break;
}
return {
title: baseIdea.split(":")[0],
description: baseIdea,
difficulty: difficultyModifier,
goal: goal,
theme: theme
};
}
function displayVRFitnessGame(game) {
const themeEmojis = {
fantasy: "πŸ§™β€β™‚οΈ",
scifi: "πŸš€",
historical: "πŸ›οΈ",
nature: "🌿",
urban: "πŸ™οΈ"
};
const goalEmojis = {
cardio: "πŸƒβ€β™€οΈ",
strength: "πŸ’ͺ",
flexibility: "πŸ§˜β€β™‚οΈ",
balance: "πŸ€Έβ€β™€οΈ"
};
let gameHTML = `
<h3 class="text-2xl font-bold text-purple-700">${game.title} ${themeEmojis[game.theme]}</h3>
<p class="text-lg text-gray-700 mt-2">${game.description}</p>
<p class="text-md text-gray-600 mt-4">${game.difficulty}</p>
<div class="mt-6 flex justify-between items-center">
<span class="text-sm font-semibold text-purple-600">Theme: ${game.theme.charAt(0).toUpperCase() + game.theme.slice(1)}</span>
<span class="text-sm font-semibold text-purple-600">Fitness Goal: ${game.goal.charAt(0).toUpperCase() + game.goal.slice(1)} ${goalEmojis[game.goal]}</span>
</div>
<div class="mt-8 flex justify-center">
<div class="float text-6xl">${themeEmojis[game.theme]}${goalEmojis[game.goal]}</div>
</div>
<div class="mt-8 text-center">
<button onclick="generateNewIdea()" class="px-4 py-2 bg-purple-600 text-white rounded hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:ring-offset-2">
Generate Another Idea πŸ”„
</button>
</div>
`;
gameIdeaResult.innerHTML = gameHTML;
}
function generateNewIdea() {
vrFitnessForm.dispatchEvent(new Event('submit'));
}
</script>
</body></html>