frameforge-studio / models /wan21-gta.html
00Boobs00's picture
Please integrate these loras in this repository: https://huggingface.co/Playtime-AI/Wan2.1-Loras/tree/main
3919950 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WAN2.1 GTA - FrameForge Studio</title>
<link rel="stylesheet" href="/style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-8">
<section class="mb-12">
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<h1 class="text-4xl font-bold mb-4">WAN2.1 GTA</h1>
<p class="text-gray-300 mb-6">Transform your images into gritty urban animations with the distinctive Grand Theft Auto art style and edgy aesthetics.</p>
<div class="bg-gray-800 rounded-xl p-6 mb-6">
<h2 class="text-2xl font-bold mb-4">GTA Parameters</h2>
<div class="space-y-4">
<div>
<label class="block text-gray-300 mb-2">Urban Style</label>
<select class="w-full bg-gray-700 text-white rounded p-2" id="urban-style">
<option value="gta3">GTA III Era</option>
<option value="gtavc">Vice City</option>
<option value="gtasa">San Andreas</option>
<option value="gtav">Modern GTA</option>
</select>
</div>
<div>
<label class="block text-gray-300 mb-2">Satire Level: <span id="satire-value">7</span>/10</label>
<input type="range" min="1" max="10" value="7" class="w-full accent-green-500" id="satire-slider">
</div>
<div>
<label class="block text-gray-300 mb-2">Grit Factor: <span id="grit-value">8</span>/10</label>
<input type="range" min="1" max="10" value="8" class="w-full accent-orange-500" id="grit-slider">
</div>
</div>
</div>
<button id="generate-btn" class="bg-green-500 hover:bg-green-600 text-white font-bold py-3 px-6 rounded-full transition duration-300 w-full">
Generate Video
</button>
</div>
<div class="md:w-1/2">
<div class="bg-gray-800 rounded-xl p-6">
<h2 class="text-2xl font-bold mb-4">Preview</h2>
<div class="bg-gray-700 h-80 rounded-lg flex items-center justify-center">
<i data-feather="truck" class="text-red-500 w-16 h-16"></i>
</div>
<div class="mt-4 flex justify-between">
<button class="bg-gray-700 hover:bg-gray-600 text-white py-2 px-4 rounded">
<i data-feather="play" class="w-4 h-4"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white py-2 px-4 rounded">
<i data-feather="download" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="mb-12">
<h2 class="text-3xl font-bold mb-6">Urban Showcase</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-800 rounded-lg overflow-hidden">
<img src="http://static.photos/cityscape/320x240/22" alt="Cityscape Chase" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Cityscape Chase</h3>
<p class="text-gray-400 text-sm">High-speed urban pursuits</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg overflow-hidden">
<img src="http://static.photos/people/320x240/23" alt="Street Culture" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Street Culture</h3>
<p class="text-gray-400 text-sm">Urban lifestyle scenes</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg overflow-hidden">
<img src="http://static.photos/technology/320x240/24" alt="Underground Garage" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Underground Garage</h3>
<p class="text-gray-400 text-sm">Vehicle customization scenes</p>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="/components/header.js"></script>
<script src="/components/footer.js"></script>
<script src="/script.js"></script>
<script>
feather.replace();
// Slider functionality
document.getElementById('satire-slider').addEventListener('input', function() {
document.getElementById('satire-value').textContent = this.value;
});
document.getElementById('grit-slider').addEventListener('input', function() {
document.getElementById('grit-value').textContent = this.value;
});
// Generate button functionality
document.getElementById('generate-btn').addEventListener('click', function() {
this.innerHTML = '<i data-feather="loader" class="animate-spin mr-2"></i> Generating...';
feather.replace();
// Simulate processing time
setTimeout(() => {
this.innerHTML = 'Generate Video';
feather.replace();
alert('Video generated successfully! Check the preview section.');
}, 2000);
});
</script>
</body>
</html>