TDN-M commited on
Commit
c875829
·
verified ·
1 Parent(s): 968d6f4

Build it in a real amazing digital effects off visuals - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +108 -2
index.html CHANGED
@@ -7,6 +7,45 @@
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  /* Financial ticker animation */
11
  @keyframes marquee {
12
  0% { transform: translateX(0); }
@@ -45,9 +84,31 @@
45
  }
46
  .price-up {
47
  animation: pulseGreen 1.5s infinite;
 
 
48
  }
49
  .price-down {
50
  animation: pulseRed 1.5s infinite;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
 
53
  /* Support button animations */
@@ -367,7 +428,8 @@
367
  </div>
368
 
369
  <!-- Enhanced Chart Section -->
370
- <div class="bg-slate-700/50 rounded-lg h-96 flex flex-col items-center justify-center border-2 border-blue-500/30 relative">
 
371
  <div class="absolute top-0 left-0 right-0 bg-gradient-to-r from-blue-900/30 to-purple-900/30 py-2 px-4 flex justify-between items-center">
372
  <span class="text-sm font-medium text-blue-300"><i class="fas fa-circle text-xs mr-2 animate-pulse text-green-400"></i> LIVE TRADING CHART</span>
373
  <div class="flex space-x-2">
@@ -516,8 +578,10 @@
516
  </div>
517
  </div>
518
 
519
- <!-- Floating Action Buttons -->
520
  <div class="fixed bottom-24 right-6 z-50 flex flex-col space-y-3">
 
 
521
  <button class="p-3 bg-gradient-to-r from-blue-600 to-blue-500 rounded-full shadow-xl hover:shadow-2xl transition-all duration-300 group">
522
  <i class="fas fa-bolt text-xl text-white"></i>
523
  <div class="absolute right-16 bottom-0 bg-slate-800 px-4 py-2 rounded-lg shadow-lg hidden group-hover:block whitespace-nowrap">
@@ -623,5 +687,47 @@
623
  alert('Our support team will contact you shortly!\nEmail: [email protected]\nPhone: +1 (800) 123-4567');
624
  });
625
  </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
626
  <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=TDN-M/cryptapp" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
627
  </html>
 
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
10
+ /* Futuristic animated background */
11
+ body::before {
12
+ content: '';
13
+ position: fixed;
14
+ top: 0;
15
+ left: 0;
16
+ width: 100%;
17
+ height: 100%;
18
+ background: linear-gradient(45deg,
19
+ rgba(11, 15, 25, 0.9) 0%,
20
+ rgba(30, 41, 59, 0.9) 50%,
21
+ rgba(15, 23, 42, 0.9) 100%);
22
+ z-index: -2;
23
+ }
24
+
25
+ body::after {
26
+ content: '';
27
+ position: fixed;
28
+ top: -50%;
29
+ left: -50%;
30
+ width: 200%;
31
+ height: 200%;
32
+ background:
33
+ radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 20%),
34
+ radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
35
+ linear-gradient(45deg,
36
+ rgba(59, 130, 246, 0.05) 0%,
37
+ rgba(124, 58, 237, 0.05) 50%,
38
+ rgba(220, 38, 38, 0.05) 100%);
39
+ animation: gradientPulse 15s ease infinite;
40
+ z-index: -1;
41
+ }
42
+
43
+ @keyframes gradientPulse {
44
+ 0% { transform: rotate(0deg); opacity: 0.7; }
45
+ 50% { transform: rotate(180deg); opacity: 1; }
46
+ 100% { transform: rotate(360deg); opacity: 0.7; }
47
+ }
48
+
49
  /* Financial ticker animation */
50
  @keyframes marquee {
51
  0% { transform: translateX(0); }
 
84
  }
85
  .price-up {
86
  animation: pulseGreen 1.5s infinite;
87
+ box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
88
+ text-shadow: 0 0 5px rgba(74, 222, 128, 0.7);
89
  }
90
  .price-down {
91
  animation: pulseRed 1.5s infinite;
92
+ box-shadow: 0 0 10px rgba(248, 113, 113, 0.7);
93
+ text-shadow: 0 0 5px rgba(248, 113, 113, 0.7);
94
+ }
95
+ .glow-effect {
96
+ position: relative;
97
+ }
98
+ .glow-effect::after {
99
+ content: '';
100
+ position: absolute;
101
+ top: 0;
102
+ left: 0;
103
+ right: 0;
104
+ bottom: 0;
105
+ border-radius: inherit;
106
+ box-shadow: 0 0 15px currentColor;
107
+ opacity: 0;
108
+ transition: opacity 0.3s ease;
109
+ }
110
+ .glow-effect:hover::after {
111
+ opacity: 0.7;
112
  }
113
 
114
  /* Support button animations */
 
428
  </div>
429
 
430
  <!-- Enhanced Chart Section -->
431
+ <div class="bg-slate-700/20 rounded-lg h-96 flex flex-col items-center justify-center border-2 border-blue-500/30 relative overflow-hidden">
432
+ <div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiBvcGFjaXR5PSIwLjEiPgogIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICA8cGF0aCBkPSJNMzAwIDBjLTE2NS45NjUgMC0zMDAgMTM0LjAzNS0zMDAgMzAwczEzNC4wMzUgMzAwIDMwMCAzMDAgMzAwLTEzNC4wMzUgMzAwLTMwMFM0NjUuOTY1IDAgMzAwIDB6IiBzdHJva2U9IiMzODJkN2YiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggZD0iTTMwMCAxMDBjLTExMC40NjEgMC0yMDAgODkuNTM5LTIwMCAyMDBzODkuNTM5IDIwMCAyMDAgMjAwIDIwMC04OS41MzkgMjAwLTIwMFM0MTAuNDYxIDEwMCAzMDAgMTAweiIgc3Ryb2tlPSIjMzg4ZTk1IiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDxwYXRoIGQ9Ik0zMDAgMjAwYy01NS4yMjggMC0xMDAgNDQuNzcyLTEwMCAxMDBzNDQuNzcyIDEwMCAxMDAgMTAwIDEwMC00NC43NzIgMTAwLTEwMFMzNTUuMjI4IDIwMCAzMDAgMjAweiIgc3Ryb2tlPSIjOGI1Y2Y5IiBzdHJva2Utd2lkdGg9IjEiLz4KICA8L2c+Cjwvc3ZnPg==')] bg-center [mask-image:linear-gradient(to_bottom,white_10%,transparent_70%)]"></div>
433
  <div class="absolute top-0 left-0 right-0 bg-gradient-to-r from-blue-900/30 to-purple-900/30 py-2 px-4 flex justify-between items-center">
434
  <span class="text-sm font-medium text-blue-300"><i class="fas fa-circle text-xs mr-2 animate-pulse text-green-400"></i> LIVE TRADING CHART</span>
435
  <div class="flex space-x-2">
 
578
  </div>
579
  </div>
580
 
581
+ <!-- Floating Action Buttons with Particle Effects -->
582
  <div class="fixed bottom-24 right-6 z-50 flex flex-col space-y-3">
583
+ <div class="particles absolute inset-0 pointer-events-none" id="particles-1"></div>
584
+ <div class="particles absolute inset-0 pointer-events-none" id="particles-2"></div>
585
  <button class="p-3 bg-gradient-to-r from-blue-600 to-blue-500 rounded-full shadow-xl hover:shadow-2xl transition-all duration-300 group">
586
  <i class="fas fa-bolt text-xl text-white"></i>
587
  <div class="absolute right-16 bottom-0 bg-slate-800 px-4 py-2 rounded-lg shadow-lg hidden group-hover:block whitespace-nowrap">
 
687
  alert('Our support team will contact you shortly!\nEmail: [email protected]\nPhone: +1 (800) 123-4567');
688
  });
689
  </script>
690
+
691
+ <script>
692
+ // Particle effects for floating buttons
693
+ function createParticles(containerId, color) {
694
+ const container = document.getElementById(containerId);
695
+ const particleCount = 15;
696
+
697
+ for (let i = 0; i < particleCount; i++) {
698
+ const particle = document.createElement('div');
699
+ particle.className = 'particle absolute rounded-full';
700
+ particle.style.width = `${Math.random() * 4 + 2}px`;
701
+ particle.style.height = particle.style.width;
702
+ particle.style.backgroundColor = color;
703
+ particle.style.opacity = Math.random() * 0.5 + 0.1;
704
+
705
+ // Random starting position
706
+ const posX = Math.random() * 100;
707
+ const posY = Math.random() * 100;
708
+ particle.style.left = `${posX}%`;
709
+ particle.style.top = `${posY}%`;
710
+
711
+ // Animation
712
+ const duration = Math.random() * 10 + 5;
713
+ const delay = Math.random() * 5;
714
+ particle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`;
715
+
716
+ container.appendChild(particle);
717
+ }
718
+ }
719
+
720
+ // Initialize particles
721
+ createParticles('particles-1', '#3b82f6');
722
+ createParticles('particles-2', '#8b5cf6');
723
+ </script>
724
+
725
+ <style>
726
+ @keyframes float {
727
+ 0% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
728
+ 50% { transform: translate(calc((Math.random() - 0.5) * 50px), calc((Math.random() - 0.5) * 50px)) rotate(180deg); opacity: 0.7; }
729
+ 100% { transform: translate(0, 0) rotate(360deg); opacity: 0.1; }
730
+ }
731
+ </style>
732
  <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=TDN-M/cryptapp" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
733
  </html>