services-ia / index.html
docto41's picture
Add 3 files
3d75105 verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusAI - Générateur de Sites Futuriste</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">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<style>
:root {
--neon-blue: #0ff0fc;
--neon-pink: #ff2ced;
--neon-purple: #9d00ff;
--dark-space: #0a0a1a;
}
body {
background-color: var(--dark-space);
color: white;
font-family: 'Segoe UI', system-ui, sans-serif;
overflow-x: hidden;
}
.neon-text {
text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}
.neon-box {
border: 1px solid var(--neon-blue);
box-shadow: 0 0 15px var(--neon-blue), inset 0 0 15px var(--neon-blue);
background: rgba(15, 240, 252, 0.05);
}
.neon-btn {
position: relative;
overflow: hidden;
transition: all 0.3s;
z-index: 1;
}
.neon-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
transition: 0.5s;
z-index: -1;
}
.neon-btn:hover::before {
left: 100%;
}
.glowing-circle {
position: absolute;
border-radius: 50%;
filter: blur(40px);
opacity: 0.5;
z-index: -1;
}
.holographic-card {
background: linear-gradient(135deg, rgba(15, 240, 252, 0.1), rgba(157, 0, 255, 0.1));
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
}
.holographic-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(15, 240, 252, 0) 0%,
rgba(15, 240, 252, 0.1) 20%,
rgba(255, 44, 237, 0.1) 40%,
rgba(157, 0, 255, 0.1) 60%,
rgba(15, 240, 252, 0) 100%
);
transform: rotate(30deg);
animation: shine 6s infinite linear;
}
@keyframes shine {
0% { transform: rotate(30deg) translate(-30%, -30%); }
100% { transform: rotate(30deg) translate(30%, 30%); }
}
.cyber-grid {
background-image:
linear-gradient(rgba(15, 240, 252, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(15, 240, 252, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}
.scanline {
position: relative;
overflow: hidden;
}
.scanline::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue);
animation: scan 8s linear infinite;
}
@keyframes scan {
0% { top: -2px; }
100% { top: 100%; }
}
.typewriter {
overflow: hidden;
border-right: 3px solid var(--neon-blue);
white-space: nowrap;
animation:
typing 3.5s steps(40, end),
blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--neon-blue) }
}
.particle {
position: absolute;
border-radius: 50%;
background: var(--neon-blue);
pointer-events: none;
}
</style>
</head>
<body class="cyber-grid">
<!-- Particules animées -->
<div id="particles"></div>
<!-- Cercles lumineux en arrière-plan -->
<div class="glowing-circle w-64 h-64 bg-blue-500" style="top: 20%; left: 10%;"></div>
<div class="glowing-circle w-96 h-96 bg-purple-500" style="top: 60%; right: 5%;"></div>
<div class="glowing-circle w-80 h-80 bg-pink-500" style="bottom: 10%; left: 20%;"></div>
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2 neon-text">
<i class="fas fa-robot text-3xl"></i>
<span class="text-2xl font-bold">NexusAI</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="hover:text-neon-blue transition">Accueil</a>
<a href="#" class="hover:text-neon-blue transition">Fonctionnalités</a>
<a href="#" class="hover:text-neon-blue transition">Générateurs</a>
<a href="#" class="hover:text-neon-blue transition">Templates</a>
<a href="#" class="hover:text-neon-blue transition">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full border border-neon-blue hover:bg-neon-blue hover:bg-opacity-10 transition">
Connexion
</button>
<button class="px-6 py-2 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple text-black font-bold hover:opacity-90 transition">
Essai Gratuit
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-20 mt-10 relative">
<div class="absolute top-0 left-0 w-full h-full overflow-hidden z-0">
<div class="floating" style="position: absolute; top: 30%; left: 70%;">
<div class="w-16 h-16 rounded-full bg-neon-blue opacity-20"></div>
</div>
<div class="floating" style="position: absolute; top: 60%; left: 20%; animation-delay: 2s;">
<div class="w-24 h-24 rounded-full bg-neon-pink opacity-20"></div>
</div>
</div>
<div class="relative z-10 text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6 neon-text">
<span class="typewriter">Créez des Sites Futuristes en Quelques Clics</span>
</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto text-gray-300">
Notre IA avancée génère des sites web uniques avec des designs cyberpunk, des animations futuristes et des fonctionnalités intelligentes.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-6">
<button class="px-8 py-4 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple text-black font-bold text-lg hover:opacity-90 transition transform hover:scale-105 shadow-lg shadow-neon-blue/30">
<i class="fas fa-bolt mr-2"></i> Générer Maintenant
</button>
<button class="px-8 py-4 rounded-full border-2 border-neon-blue text-neon-blue font-bold text-lg hover:bg-neon-blue hover:bg-opacity-10 transition transform hover:scale-105">
<i class="fas fa-play-circle mr-2"></i> Voir la Démo
</button>
</div>
</div>
<div class="mt-20 relative">
<div class="holographic-card rounded-2xl overflow-hidden" style="height: 500px;">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-8">
<i class="fas fa-laptop-code text-6xl mb-6 text-neon-blue"></i>
<h3 class="text-3xl font-bold mb-4">Prévisualisation en Temps Réel</h3>
<p class="text-gray-300 mb-6">L'interface de NexusAI s'adapte à vos besoins en direct</p>
<div class="inline-block px-6 py-3 rounded-full bg-neon-blue bg-opacity-20 text-neon-blue font-medium">
Chargement des modules...
</div>
</div>
</div>
</div>
<div class="absolute -bottom-10 left-1/2 transform -translate-x-1/2 flex space-x-4">
<div class="w-3 h-3 rounded-full bg-neon-blue pulse"></div>
<div class="w-3 h-3 rounded-full bg-neon-pink pulse" style="animation-delay: 0.5s;"></div>
<div class="w-3 h-3 rounded-full bg-neon-purple pulse" style="animation-delay: 1s;"></div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="container mx-auto px-6 py-20 mt-20">
<div class="text-center mb-20">
<h2 class="text-4xl md:text-5xl font-bold mb-6 neon-text">Technologie de Génération Avancée</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Notre moteur AI combine plusieurs technologies de pointe pour des résultats uniques
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<!-- Feature 1 -->
<div class="holographic-card rounded-xl p-8 scanline">
<div class="w-16 h-16 rounded-full bg-neon-blue bg-opacity-20 flex items-center justify-center mb-6">
<i class="fas fa-brain text-2xl text-neon-blue"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Réseaux Neuronaux Profonds</h3>
<p class="text-gray-300 mb-6">
Des modèles GPT-4 et Stable Diffusion spécialement entraînés pour comprendre vos besoins en design.
</p>
<div class="h-1 w-full bg-gradient-to-r from-neon-blue to-transparent mb-4"></div>
<div class="text-neon-blue font-mono text-sm">MODULE_AI_CORE_ACTIVE</div>
</div>
<!-- Feature 2 -->
<div class="holographic-card rounded-xl p-8 scanline" style="animation-delay: 2s;">
<div class="w-16 h-16 rounded-full bg-neon-purple bg-opacity-20 flex items-center justify-center mb-6">
<i class="fas fa-project-diagram text-2xl text-neon-purple"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Génération de Code Automatique</h3>
<p class="text-gray-300 mb-6">
Code HTML/CSS/JS propre et optimisé généré automatiquement avec des animations futuristes intégrées.
</p>
<div class="h-1 w-full bg-gradient-to-r from-neon-purple to-transparent mb-4"></div>
<div class="text-neon-purple font-mono text-sm">CODEGEN_v3.2_RUNNING</div>
</div>
<!-- Feature 3 -->
<div class="holographic-card rounded-xl p-8 scanline" style="animation-delay: 4s;">
<div class="w-16 h-16 rounded-full bg-neon-pink bg-opacity-20 flex items-center justify-center mb-6">
<i class="fas fa-sliders-h text-2xl text-neon-pink"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Personnalisation Avancée</h3>
<p class="text-gray-300 mb-6">
Contrôle précis de chaque élément avec une interface holographique intuitive.
</p>
<div class="h-1 w-full bg-gradient-to-r from-neon-pink to-transparent mb-4"></div>
<div class="text-neon-pink font-mono text-sm">CUSTOMIZER_ENGINE_READY</div>
</div>
</div>
</section>
<!-- Generator Interface -->
<section class="container mx-auto px-6 py-20 mt-10">
<div class="holographic-card rounded-2xl overflow-hidden p-1">
<div class="bg-gray-900 rounded-xl p-8">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Sidebar -->
<div class="lg:w-1/4">
<h3 class="text-2xl font-bold mb-6 text-neon-blue flex items-center">
<i class="fas fa-cogs mr-3"></i> Paramètres
</h3>
<div class="space-y-6">
<!-- Style Selector -->
<div>
<label class="block text-gray-400 mb-2">Style Principal</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 text-white focus:border-neon-blue focus:outline-none">
<option>Cyberpunk</option>
<option>Neon Futuriste</option>
<option>Matrix</option>
<option>Sci-Fi</option>
<option>Holographique</option>
</select>
</div>
<!-- Color Picker -->
<div>
<label class="block text-gray-400 mb-2">Couleur Principale</label>
<div class="flex space-x-2">
<div class="w-8 h-8 rounded-full bg-neon-blue cursor-pointer border-2 border-white"></div>
<div class="w-8 h-8 rounded-full bg-neon-pink cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-neon-purple cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-green-500 cursor-pointer"></div>
<div class="w-8 h-8 rounded-full bg-yellow-500 cursor-pointer"></div>
</div>
</div>
<!-- Animation Toggle -->
<div>
<label class="flex items-center space-x-3 cursor-pointer">
<div class="relative">
<input type="checkbox" class="sr-only" checked>
<div class="w-10 h-4 bg-gray-600 rounded-full shadow-inner"></div>
<div class="dot absolute w-6 h-6 bg-neon-blue rounded-full shadow -left-1 -top-1 transition"></div>
</div>
<span class="text-gray-400">Animations 3D</span>
</label>
</div>
<!-- Sections -->
<div>
<label class="block text-gray-400 mb-2">Sections</label>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-neon-blue" checked>
<span class="ml-2 text-gray-300">Hero</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-neon-blue" checked>
<span class="ml-2 text-gray-300">Features</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-neon-blue">
<span class="ml-2 text-gray-300">Testimonials</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox text-neon-blue" checked>
<span class="ml-2 text-gray-300">Contact</span>
</label>
</div>
</div>
</div>
<button class="mt-8 w-full py-3 bg-gradient-to-r from-neon-blue to-neon-purple text-black font-bold rounded-lg hover:opacity-90 transition">
<i class="fas fa-magic mr-2"></i> Générer le Site
</button>
</div>
<!-- Preview -->
<div class="lg:w-3/4">
<div class="flex justify-between items-center mb-6">
<h3 class="text-2xl font-bold text-neon-pink flex items-center">
<i class="fas fa-eye mr-3"></i> Aperçu en Direct
</h3>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-gray-800 rounded-lg text-sm">Desktop</button>
<button class="px-4 py-2 bg-gray-800 rounded-lg text-sm">Tablet</button>
<button class="px-4 py-2 bg-gray-800 rounded-lg text-sm">Mobile</button>
</div>
</div>
<div class="border-2 border-gray-700 rounded-lg overflow-hidden">
<div class="bg-gray-800 p-3 flex items-center">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="flex-1 text-center text-sm text-gray-400">
https://votresite-nexusai.com
</div>
</div>
<div class="h-96 bg-gray-900 flex items-center justify-center relative overflow-hidden">
<div class="text-center p-6">
<div class="text-4xl font-bold mb-4 neon-text">Votre Site Futuriste</div>
<p class="text-gray-400 mb-6">Le contenu généré par l'IA apparaîtra ici en temps réel</p>
<div class="inline-block px-6 py-3 rounded-full bg-neon-blue bg-opacity-20 text-neon-blue">
<i class="fas fa-spinner fa-spin mr-2"></i> Génération en cours...
</div>
</div>
<!-- Elements animés pour la preview -->
<div class="absolute top-0 left-0 w-full h-full pointer-events-none">
<div class="floating" style="position: absolute; top: 20%; left: 15%;">
<div class="w-8 h-8 rounded-full bg-neon-blue opacity-20"></div>
</div>
<div class="floating" style="position: absolute; top: 70%; left: 80%; animation-delay: 1s;">
<div class="w-12 h-12 rounded-full bg-neon-pink opacity-20"></div>
</div>
<div class="floating" style="position: absolute; top: 30%; left: 60%; animation-delay: 2s;">
<div class="w-6 h-6 rounded-full bg-neon-purple opacity-20"></div>
</div>
</div>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="text-sm text-gray-400">
<i class="fas fa-info-circle mr-2"></i> Les modifications sont appliquées instantanément
</div>
<button class="px-6 py-2 bg-neon-blue bg-opacity-20 text-neon-blue rounded-lg font-medium">
<i class="fas fa-code mr-2"></i> Exporter le Code
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Templates Gallery -->
<section class="container mx-auto px-6 py-20">
<div class="text-center mb-20">
<h2 class="text-4xl md:text-5xl font-bold mb-6 neon-text">Templates Futuristes</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Choisissez parmi nos centaines de templates conçus par IA ou créez le vôtre
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Template 1 -->
<div class="holographic-card rounded-xl overflow-hidden transform hover:scale-105 transition duration-500">
<div class="h-64 bg-gradient-to-br from-neon-blue to-neon-purple relative overflow-hidden">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-6">
<i class="fas fa-globe-americas text-5xl mb-4"></i>
<h3 class="text-2xl font-bold">CyberSpace</h3>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 bg-black bg-opacity-70 p-4">
<div class="flex justify-between items-center">
<span class="text-sm">Site Corporatif</span>
<button class="text-xs bg-neon-blue text-black px-3 py-1 rounded-full">Essayer</button>
</div>
</div>
</div>
</div>
<!-- Template 2 -->
<div class="holographic-card rounded-xl overflow-hidden transform hover:scale-105 transition duration-500">
<div class="h-64 bg-gradient-to-br from-neon-pink to-purple-900 relative overflow-hidden">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-6">
<i class="fas fa-shopping-cart text-5xl mb-4"></i>
<h3 class="text-2xl font-bold">NeonShop</h3>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 bg-black bg-opacity-70 p-4">
<div class="flex justify-between items-center">
<span class="text-sm">E-Commerce</span>
<button class="text-xs bg-neon-pink text-black px-3 py-1 rounded-full">Essayer</button>
</div>
</div>
</div>
</div>
<!-- Template 3 -->
<div class="holographic-card rounded-xl overflow-hidden transform hover:scale-105 transition duration-500">
<div class="h-64 bg-gradient-to-br from-green-400 to-blue-500 relative overflow-hidden">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-6">
<i class="fas fa-gamepad text-5xl mb-4"></i>
<h3 class="text-2xl font-bold">GameHub</h3>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 bg-black bg-opacity-70 p-4">
<div class="flex justify-between items-center">
<span class="text-sm">Gaming</span>
<button class="text-xs bg-green-400 text-black px-3 py-1 rounded-full">Essayer</button>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-4 rounded-full border-2 border-neon-blue text-neon-blue font-bold text-lg hover:bg-neon-blue hover:bg-opacity-10 transition">
<i class="fas fa-boxes mr-2"></i> Voir tous les Templates (287+)
</button>
</div>
</section>
<!-- CTA Section -->
<section class="container mx-auto px-6 py-32 text-center relative">
<div class="absolute top-0 left-0 w-full h-full overflow-hidden z-0">
<div class="floating" style="position: absolute; top: 20%; left: 10%;">
<div class="w-32 h-32 rounded-full bg-neon-blue opacity-10"></div>
</div>
<div class="floating" style="position: absolute; top: 60%; right: 10%; animation-delay: 2s;">
<div class="w-40 h-40 rounded-full bg-neon-purple opacity-10"></div>
</div>
</div>
<div class="relative z-10">
<h2 class="text-4xl md:text-6xl font-bold mb-8 neon-text">Prêt à Créer Votre Site Futuriste?</h2>
<p class="text-xl md:text-2xl mb-12 max-w-3xl mx-auto text-gray-300">
Rejoignez des milliers de créateurs et d'entreprises qui utilisent déjà NexusAI pour leurs sites web.
</p>
<button class="px-12 py-5 rounded-full bg-gradient-to-r from-neon-blue to-neon-purple text-black font-bold text-xl hover:opacity-90 transition transform hover:scale-105 shadow-lg shadow-neon-blue/30">
<i class="fas fa-rocket mr-3"></i> Commencer Maintenant
</button>
</div>
</section>
<!-- Footer -->
<footer class="border-t border-gray-800 pt-12 pb-8">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-lg font-bold mb-4 text-neon-blue">NexusAI</h3>
<p class="text-gray-400">
La plateforme de génération de sites web la plus avancée, propulsée par l'IA.
</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Produit</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Fonctionnalités</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Templates</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Prix</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">API</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Ressources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Forum</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Entreprise</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">À propos</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Carrières</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Presse</a></li>
<li><a href="#" class="text-gray-400 hover:text-neon-blue transition">Contact</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="text-gray-400 mb-4 md:mb-0">
© 2023 NexusAI. Tous droits réservés.
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-neon-blue transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-neon-blue transition"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Animation des éléments avec GSAP
document.addEventListener('DOMContentLoaded', function() {
// Initialiser GSAP animations
gsap.from("nav", {duration: 1, y: -50, opacity: 0, ease: "power2.out"});
gsap.from(".typewriter", {duration: 2, opacity: 0, delay: 0.5});
// Animer les cartes features une par une
gsap.from(".holographic-card", {
scrollTrigger: {
trigger: ".holographic-card",
start: "top 80%",
toggleActions: "play none none none"
},
duration: 1,
y: 50,
opacity: 0,
stagger: 0.2,
ease: "back.out"
});
// Effet de particules
const particlesContainer = document.getElementById('particles');
const particleCount = 50;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.className = 'particle';
// Position aléatoire
const posX = Math.random() * window.innerWidth;
const posY = Math.random() * window.innerHeight;
// Taille aléatoire
const size = Math.random() * 3 + 1;
// Durée d'animation aléatoire
const duration = Math.random() * 10 + 5;
const delay = Math.random() * 5;
// Appliquer les styles
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.left = `${posX}px`;
particle.style.top = `${posY}px`;
particle.style.opacity = Math.random() * 0.5 + 0.1;
// Ajouter au DOM
particlesContainer.appendChild(particle);
// Animation GSAP
gsap.to(particle, {
x: `+=${(Math.random() - 0.5) * 200}`,
y: `+=${(Math.random() - 0.5) * 200}`,
duration: duration,
delay: delay,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
// Clignotement aléatoire
gsap.to(particle, {
opacity: Math.random() * 0.5 + 0.1,
duration: Math.random() * 3 + 1,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
}
// Animation du bouton générateur
const generateBtn = document.querySelector('.neon-btn');
if (generateBtn) {
generateBtn.addEventListener('mouseenter', function() {
gsap.to(generateBtn, {
boxShadow: `0 0 20px ${getComputedStyle(document.documentElement).getPropertyValue('--neon-blue')}`,
duration: 0.3
});
});
generateBtn.addEventListener('mouseleave', function() {
gsap.to(generateBtn, {
boxShadow: 'none',
duration: 0.3
});
});
}
// Effet de scroll pour les éléments
gsap.utils.toArray(".floating").forEach(element => {
gsap.to(element, {
y: 20,
duration: 3,
repeat: -1,
yoyo: true,
ease: "sine.inOut"
});
});
});
</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=docto41/services-ia" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>