Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>WAN2.1 Disney - 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 Disney</h1> | |
| <p class="text-gray-300 mb-6">Create magical Disney-style animations with expressive characters, vibrant colors, and enchanting storytelling elements.</p> | |
| <div class="bg-gray-800 rounded-xl p-6 mb-6"> | |
| <h2 class="text-2xl font-bold mb-4">Disney Parameters</h2> | |
| <div class="space-y-4"> | |
| <div> | |
| <label class="block text-gray-300 mb-2">Magic Intensity: <span id="magic-value">9</span>/10</label> | |
| <input type="range" min="1" max="10" value="9" class="w-full accent-green-500" id="magic-slider"> | |
| </div> | |
| <div> | |
| <label class="block text-gray-300 mb-2">Character Expression</label> | |
| <select class="w-full bg-gray-700 text-white rounded p-2" id="expression-style"> | |
| <option value="joyful">Joyful</option> | |
| <option value="heroic">Heroic</option> | |
| <option value="mischievous">Mischievous</option> | |
| <option value="magical">Magical</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-gray-300 mb-2">Color Palette</label> | |
| <select class="w-full bg-gray-700 text-white rounded p-2" id="color-palette"> | |
| <option value="classic">Classic Disney</option> | |
| <option value="pastel">Pastel Dreams</option> | |
| <option value="vibrant">Vibrant Fantasy</option> | |
| </select> | |
| </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="star" class="text-yellow-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">Enchanted Examples</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/people/320x240/19" alt="Princess Transformation" class="w-full h-48 object-cover"> | |
| <div class="p-4"> | |
| <h3 class="font-bold mb-2">Princess Transformation</h3> | |
| <p class="text-gray-400 text-sm">Magical character transformations</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/nature/320x240/20" alt="Fantasy Adventure" class="w-full h-48 object-cover"> | |
| <div class="p-4"> | |
| <h3 class="font-bold mb-2">Fantasy Adventure</h3> | |
| <p class="text-gray-400 text-sm">Enchanted forest scenes</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/people/320x240/21" alt="Animal Friends" class="w-full h-48 object-cover"> | |
| <div class="p-4"> | |
| <h3 class="font-bold mb-2">Animal Friends</h3> | |
| <p class="text-gray-400 text-sm">Talking animal companions</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('magic-slider').addEventListener('input', function() { | |
| document.getElementById('magic-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> |