Spaces:
Paused
Paused
Create index.html
Browse files- index.html +101 -0
index.html
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>WANderFrame - LoRA Linker</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
</head>
|
| 12 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 13 |
+
<custom-navbar></custom-navbar>
|
| 14 |
+
|
| 15 |
+
<main class="container mx-auto px-4 py-8">
|
| 16 |
+
<div class="max-w-4xl mx-auto">
|
| 17 |
+
<div class="text-center mb-12">
|
| 18 |
+
<h1 class="text-4xl md:text-5xl font-bold mb-4 bg-gradient-to-r from-purple-500 to-pink-500 bg-clip-text text-transparent">WANderFrame</h1>
|
| 19 |
+
<p class="text-xl text-gray-400">Seamless LoRA integration with frame-perfect video generation</p>
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
<div class="bg-gray-800 rounded-xl p-6 shadow-lg mb-8">
|
| 23 |
+
<h2 class="text-2xl font-semibold mb-4 flex items-center">
|
| 24 |
+
<i data-feather="link" class="mr-2"></i> LoRA URL Configuration
|
| 25 |
+
</h2>
|
| 26 |
+
<div class="space-y-4">
|
| 27 |
+
<div>
|
| 28 |
+
<label class="block text-gray-400 mb-2">LoRA URL</label>
|
| 29 |
+
<input type="text" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" placeholder="https://example.com/lora.safetensors">
|
| 30 |
+
</div>
|
| 31 |
+
<div>
|
| 32 |
+
<label class="block text-gray-400 mb-2">Strength</label>
|
| 33 |
+
<input type="range" min="0" max="1" step="0.1" value="0.7" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer">
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
</div>
|
| 37 |
+
|
| 38 |
+
<div class="bg-gray-800 rounded-xl p-6 shadow-lg mb-8">
|
| 39 |
+
<h2 class="text-2xl font-semibold mb-4 flex items-center">
|
| 40 |
+
<i data-feather="film" class="mr-2"></i> FFLF Configuration
|
| 41 |
+
</h2>
|
| 42 |
+
<div class="space-y-4">
|
| 43 |
+
<div class="flex items-center">
|
| 44 |
+
<input type="checkbox" id="enable-fflf" class="w-5 h-5 text-purple-500 rounded focus:ring-purple-500" checked>
|
| 45 |
+
<label for="enable-fflf" class="ml-2 text-gray-400">Enable First Frame Last Frame</label>
|
| 46 |
+
</div>
|
| 47 |
+
<div>
|
| 48 |
+
<label class="block text-gray-400 mb-2">Frame Blend Strength</label>
|
| 49 |
+
<input type="range" min="0" max="1" step="0.1" value="0.5" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer">
|
| 50 |
+
</div>
|
| 51 |
+
</div>
|
| 52 |
+
</div>
|
| 53 |
+
|
| 54 |
+
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
|
| 55 |
+
<h2 class="text-2xl font-semibold mb-4 flex items-center">
|
| 56 |
+
<i data-feather="settings" class="mr-2"></i> Generation Parameters
|
| 57 |
+
</h2>
|
| 58 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 59 |
+
<div>
|
| 60 |
+
<label class="block text-gray-400 mb-2">Seed</label>
|
| 61 |
+
<input type="number" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="-1">
|
| 62 |
+
</div>
|
| 63 |
+
<div>
|
| 64 |
+
<label class="block text-gray-400 mb-2">Steps</label>
|
| 65 |
+
<input type="number" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="30">
|
| 66 |
+
</div>
|
| 67 |
+
<div>
|
| 68 |
+
<label class="block text-gray-400 mb-2">CFG Scale</label>
|
| 69 |
+
<input type="number" step="0.5" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="7.5">
|
| 70 |
+
</div>
|
| 71 |
+
<div>
|
| 72 |
+
<label class="block text-gray-400 mb-2">Width</label>
|
| 73 |
+
<input type="number" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="512">
|
| 74 |
+
</div>
|
| 75 |
+
<div>
|
| 76 |
+
<label class="block text-gray-400 mb-2">Height</label>
|
| 77 |
+
<input type="number" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="512">
|
| 78 |
+
</div>
|
| 79 |
+
<div>
|
| 80 |
+
<label class="block text-gray-400 mb-2">Frames</label>
|
| 81 |
+
<input type="number" class="w-full bg-gray-700 rounded-lg px-4 py-2 focus:ring-2 focus:ring-purple-500 focus:outline-none" value="24">
|
| 82 |
+
</div>
|
| 83 |
+
</div>
|
| 84 |
+
</div>
|
| 85 |
+
|
| 86 |
+
<div class="mt-8 flex justify-center">
|
| 87 |
+
<button class="bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 text-white font-bold py-3 px-8 rounded-full text-lg transition-all duration-300 transform hover:scale-105 flex items-center">
|
| 88 |
+
<i data-feather="play" class="mr-2"></i> Generate Video
|
| 89 |
+
</button>
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
</main>
|
| 93 |
+
|
| 94 |
+
<custom-footer></custom-footer>
|
| 95 |
+
|
| 96 |
+
<script src="components/navbar.js"></script>
|
| 97 |
+
<script src="components/footer.js"></script>
|
| 98 |
+
<script src="script.js"></script>
|
| 99 |
+
<script>feather.replace();</script>
|
| 100 |
+
</body>
|
| 101 |
+
</html>
|