dolphin-b13 / index.html
j4myjohn's picture
undefined - Initial Deployment
96d3c6f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Run Dolphin B13 Locally</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.code-block {
font-family: 'Courier New', monospace;
background-color: #2d3748;
color: #f7fafc;
border-radius: 0.375rem;
padding: 1rem;
overflow-x: auto;
}
.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<header class="gradient-bg text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col items-center text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Run Dolphin B13 Locally</h1>
<p class="text-xl md:text-2xl max-w-3xl">Complete guide to setting up Dolphin B13 on your local machine</p>
<div class="mt-8 flex space-x-4">
<a href="#requirements" class="px-6 py-3 bg-white text-indigo-700 rounded-lg font-semibold hover:bg-gray-100 transition">Requirements</a>
<a href="#installation" class="px-6 py-3 border-2 border-white text-white rounded-lg font-semibold hover:bg-white hover:bg-opacity-10 transition">Installation</a>
</div>
</div>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<section id="requirements" class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center">System Requirements</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-lg">
<div class="text-indigo-600 mb-4">
<i class="fas fa-microchip text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Hardware</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>CPU: Intel Core i7-7700K (4.2GHz) - Excellent for Dolphin</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>GPU: RTX 3090/3060 - Overkill for Dolphin (can run at 8K)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>RAM: 32GB DDR4 - More than enough</span>
</li>
</ul>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg">
<div class="text-indigo-600 mb-4">
<i class="fas fa-laptop-code text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Software</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Windows 10/11 or Linux</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Visual C++ Redistributable</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Latest graphics drivers</span>
</li>
</ul>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg">
<div class="text-indigo-600 mb-4">
<i class="fas fa-gamepad text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Additional</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Game ROMs (legally obtained)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Game controller recommended</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Internet connection for updates</span>
</li>
</ul>
</div>
</div>
</section>
<section id="installation" class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center">Installation Steps</h2>
<div class="space-y-8 max-w-4xl mx-auto">
<div class="step-card bg-white p-6 rounded-xl shadow-lg transition duration-300">
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-full w-10 h-10 flex items-center justify-center font-bold mr-4">1</div>
<div>
<h3 class="text-xl font-semibold mb-3">Download Dolphin B13</h3>
<p class="text-gray-600 mb-4">Get the latest version of Dolphin B13 from the official website or GitHub repository.</p>
<div class="flex flex-wrap gap-3">
<a href="https://dolphin-emu.org/" class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition flex items-center">
<i class="fas fa-download mr-2"></i> Official Website
</a>
<a href="https://github.com/dolphin-emu/dolphin" class="px-4 py-2 bg-gray-800 text-white rounded-md hover:bg-gray-900 transition flex items-center">
<i class="fab fa-github mr-2"></i> GitHub
</a>
</div>
</div>
</div>
</div>
<div class="step-card bg-white p-6 rounded-xl shadow-lg transition duration-300">
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-full w-10 h-10 flex items-center justify-center font-bold mr-4">2</div>
<div>
<h3 class="text-xl font-semibold mb-3">Extract the Files</h3>
<p class="text-gray-600 mb-4">After downloading, extract the ZIP file to your preferred location.</p>
<div class="code-block">
# For Windows:<br>
Right-click the ZIP file → "Extract All" → Choose destination folder<br><br>
# For Linux:<br>
unzip dolphin-b13.zip -d ~/dolphin-emu
</div>
</div>
</div>
</div>
<div class="step-card bg-white p-6 rounded-xl shadow-lg transition duration-300">
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-full w-10 h-10 flex items-center justify-center font-bold mr-4">3</div>
<div>
<h3 class="text-xl font-semibold mb-3">Run Dolphin Emulator</h3>
<p class="text-gray-600 mb-4">Navigate to the extracted folder and launch the Dolphin executable.</p>
<div class="code-block">
# Windows:<br>
Double-click Dolphin.exe<br><br>
# Linux:<br>
cd ~/dolphin-emu<br>
./dolphin-emu
</div>
</div>
</div>
</div>
<div class="step-card bg-white p-6 rounded-xl shadow-lg transition duration-300">
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-full w-10 h-10 flex items-center justify-center font-bold mr-4">4</div>
<div>
<h3 class="text-xl font-semibold mb-3">Configure Settings</h3>
<p class="text-gray-600 mb-4">Optimize Dolphin for your system by adjusting the settings.</p>
<div class="space-y-4">
<div>
<h4 class="font-medium text-gray-800">Recommended Settings:</h4>
<ul class="list-disc pl-5 text-gray-600 mt-2 space-y-1">
<li>Graphics → Backend: Vulkan (best for NVIDIA GPUs)</li>
<li>Graphics → Enhancements: 6x Native (4K) or higher</li>
<li>Graphics → Hacks: Enable all performance hacks (your system can handle them)</li>
<li>Advanced → Enable "Compile Shaders Before Starting"</li>
<li>Controllers → Configure your input device</li>
</ul>
</div>
<img src="https://dolphin-emu.org/m/user-interface.png" alt="Dolphin settings" class="rounded-lg border border-gray-200">
</div>
</div>
</div>
</div>
<div class="step-card bg-white p-6 rounded-xl shadow-lg transition duration-300">
<div class="flex items-start">
<div class="bg-indigo-100 text-indigo-800 rounded-full w-10 h-10 flex items-center justify-center font-bold mr-4">5</div>
<div>
<h3 class="text-xl font-semibold mb-3">Load Your Game</h3>
<p class="text-gray-600 mb-4">Add your game directory and start playing!</p>
<div class="space-y-4">
<div class="code-block">
1. Click "Browse" in the main window<br>
2. Navigate to your game ROMs folder<br>
3. Select your game and double-click to start
</div>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4">
<div class="flex">
<div class="flex-shrink-0 text-yellow-500">
<i class="fas fa-exclamation-circle"></i>
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">
<strong>Note:</strong> Dolphin only works with legally obtained game copies. Make sure you own the games you're playing.
</p>
<p class="text-sm text-yellow-700 mt-2">
<strong>For Dual GPUs:</strong> Configure Dolphin to use your RTX 3090 in NVIDIA Control Panel for best performance.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-indigo-50 rounded-xl p-8 mb-16">
<h2 class="text-3xl font-bold mb-6 text-center">Troubleshooting</h2>
<div class="grid md:grid-cols-2 gap-6 max-w-4xl mx-auto">
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-exclamation-triangle text-red-500 mr-3"></i> Common Issues
</h3>
<ul class="space-y-3 text-gray-600">
<li class="flex items-start">
<i class="fas fa-chevron-right text-indigo-500 mt-1 mr-2"></i>
<span><strong>Black screen:</strong> Try changing graphics backend to OpenGL or Direct3D</span>
</li>
<li class="flex items-start">
<i class="fas fa-chevron-right text-indigo-500 mt-1 mr-2"></i>
<span><strong>Audio stuttering:</strong> Enable "Audio Stretching" in Audio settings</span>
</li>
<li class="flex items-start">
<i class="fas fa-chevron-right text-indigo-500 mt-1 mr-2"></i>
<span><strong>Controller not working:</strong> Make sure it's properly configured in Controller settings</span>
</li>
</ul>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-life-ring text-blue-500 mr-3"></i> Getting Help
</h3>
<ul class="space-y-3 text-gray-600">
<li class="flex items-start">
<i class="fas fa-book text-indigo-500 mt-1 mr-2"></i>
<span><a href="https://dolphin-emu.org/docs/guides/" class="text-indigo-600 hover:underline">Official Documentation</a></span>
</li>
<li class="flex items-start">
<i class="fas fa-users text-indigo-500 mt-1 mr-2"></i>
<span><a href="https://forums.dolphin-emu.org/" class="text-indigo-600 hover:underline">Community Forums</a></span>
</li>
<li class="flex items-start">
<i class="fab fa-discord text-indigo-500 mt-1 mr-2"></i>
<span><a href="https://discord.gg/dolphin-emu" class="text-indigo-600 hover:underline">Discord Server</a></span>
</li>
</ul>
</div>
</div>
</section>
<section class="text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Play?</h2>
<p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto">Dolphin B13 offers an excellent GameCube and Wii emulation experience. Follow these steps and enjoy your favorite games!</p>
<a href="#requirements" class="inline-block px-8 py-4 bg-indigo-600 text-white rounded-lg font-semibold text-lg hover:bg-indigo-700 transition">Get Started</a>
</section>
</main>
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h3 class="text-xl font-bold">Dolphin B13 Guide</h3>
<p class="text-gray-400">© 2023 All Rights Reserved</p>
</div>
<div class="flex space-x-6">
<a href="https://dolphin-emu.org/" class="text-gray-300 hover:text-white transition">
<i class="fas fa-globe text-2xl"></i>
</a>
<a href="https://github.com/dolphin-emu/dolphin" class="text-gray-300 hover:text-white transition">
<i class="fab fa-github text-2xl"></i>
</a>
<a href="https://twitter.com/dolphin_emu" class="text-gray-300 hover:text-white transition">
<i class="fab fa-twitter text-2xl"></i>
</a>
</div>
</div>
<div class="mt-8 text-center text-gray-400 text-sm">
<p>This guide is for educational purposes only. We do not condone piracy.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add animation to step cards when they come into view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.step-card').forEach(card => {
card.style.opacity = 0;
card.style.transform = 'translateY(20px)';
card.style.transition = 'all 0.6s ease-out';
observer.observe(card);
});
</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=j4myjohn/dolphin-b13" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>