| <!DOCTYPE html> |
| <html lang="ru"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Сравнение фаз слота</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/> |
| <style> |
| .glass-card { |
| background: rgba(15, 23, 42, 0.7); |
| backdrop-filter: blur(10px); |
| -webkit-backdrop-filter: blur(10px); |
| border: 1px solid rgba(255, 255, 255, 0.1); |
| } |
| .payout-glow { |
| box-shadow: 0 0 15px rgba(168, 85, 247, 0.5); |
| } |
| .drain-glow { |
| box-shadow: 0 0 15px rgba(236, 72, 153, 0.5); |
| } |
| .toggle-bg { |
| background: linear-gradient(90deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%); |
| } |
| .toggle-btn { |
| transition: all 0.3s ease; |
| transform: translateX(0); |
| } |
| .toggle-btn.payout { |
| transform: translateX(100%); |
| } |
| .chart-container { |
| transition: opacity 0.5s ease; |
| } |
| .glitch-effect { |
| position: relative; |
| } |
| .glitch-effect::before, .glitch-effect::after { |
| content: attr(data-text); |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: rgba(15, 23, 42, 0.7); |
| } |
| .glitch-effect::before { |
| left: 2px; |
| text-shadow: -2px 0 #ff00c1; |
| clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%); |
| } |
| .glitch-effect::after { |
| left: -2px; |
| text-shadow: 2px 0 #00fff9; |
| clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-900 text-white"> |
| <section class="py-20 relative overflow-hidden"> |
| |
| <div class="absolute inset-0 overflow-hidden pointer-events-none"> |
| <div class="absolute top-1/4 -left-20 w-96 h-96 rounded-full bg-purple-900/20 blur-3xl animate-pulse"></div> |
| <div class="absolute bottom-1/3 -right-20 w-96 h-96 rounded-full bg-pink-900/20 blur-3xl animate-pulse delay-300"></div> |
| </div> |
| |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> |
| |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl md:text-5xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-purple-500 animate__animated animate__fadeIn"> |
| Фазы работы слотов |
| </h2> |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto animate__animated animate__fadeIn animate__delay-1s"> |
| Наш ИИ анализирует паттерны поведения слотов и точно определяет, когда наступает фаза отдачи |
| </p> |
| </div> |
| |
| |
| <div class="flex flex-col items-center mb-14 animate__animated animate__fadeIn animate__delay-1s"> |
| <div class="relative w-64 h-12 rounded-full toggle-bg p-1 mb-4"> |
| <div class="relative h-full w-full"> |
| <div class="absolute inset-0 flex"> |
| <span class="flex-1 flex items-center justify-center text-sm font-medium">Фаза слива</span> |
| <span class="flex-1 flex items-center justify-center text-sm font-medium">Фаза отдачи</span> |
| </div> |
| <button id="toggleBtn" class="toggle-btn absolute left-0 top-0 w-1/2 h-full bg-gradient-to-r from-pink-500 to-purple-600 rounded-full shadow-lg flex items-center justify-center text-white font-bold text-sm transition-transform duration-300 ease-in-out" onclick="togglePhase()"> |
| <span id="toggleText">Слив</span> |
| </button> |
| </div> |
| </div> |
| <p class="text-gray-400 text-sm">Нажмите для переключения между фазами</p> |
| </div> |
| |
| |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-16"> |
| |
| <div id="drainPhase" class="glass-card rounded-2xl p-6 drain-glow transition-all duration-500"> |
| <h3 class="text-xl font-semibold mb-4 flex items-center"> |
| <span class="w-3 h-3 rounded-full bg-pink-500 mr-2"></span> |
| Фаза слива |
| </h3> |
| <div class="chart-container h-64"> |
| <canvas id="drainChart"></canvas> |
| </div> |
| <div class="mt-6 p-4 bg-gray-800/50 rounded-lg border border-gray-700"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0 text-2xl mr-3">🤖</div> |
| <div> |
| <h4 class="font-medium text-pink-300 mb-1">AI Анализ</h4> |
| <p class="text-gray-300 text-sm">Слот демонстрирует нестабильные коэффициенты с тенденцией к снижению. Рекомендуется избегать ставок в этот период.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="payoutPhase" class="glass-card rounded-2xl p-6 payout-glow opacity-70 scale-95 transition-all duration-500"> |
| <h3 class="text-xl font-semibold mb-4 flex items-center"> |
| <span class="w-3 h-3 rounded-full bg-purple-500 mr-2"></span> |
| Фаза отдачи |
| </h3> |
| <div class="chart-container h-64"> |
| <canvas id="payoutChart"></canvas> |
| </div> |
| <div class="mt-6 p-4 bg-gray-800/50 rounded-lg border border-gray-700"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0 text-2xl mr-3">🤖</div> |
| <div> |
| <h4 class="font-medium text-purple-300 mb-1">AI Анализ</h4> |
| <p class="text-gray-300 text-sm">Слот входит в фазу повышенной отдачи. Вероятность выигрыша увеличивается на 37% по сравнению со стандартным режимом.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="max-w-4xl mx-auto glass-card rounded-2xl p-8 border border-gray-700 animate__animated animate__fadeIn animate__delay-2s"> |
| <h3 class="text-2xl font-bold mb-6 text-center bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-purple-400"> |
| Как это работает? |
| </h3> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| <div class="text-center"> |
| <div class="w-14 h-14 bg-purple-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-purple-500/30"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z" /> |
| </svg> |
| </div> |
| <h4 class="font-semibold mb-2">Анализ данных</h4> |
| <p class="text-gray-400 text-sm">ИИ обрабатывает тысячи игровых сессий в реальном времени</p> |
| </div> |
| <div class="text-center"> |
| <div class="w-14 h-14 bg-pink-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-pink-500/30"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-pink-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" /> |
| </svg> |
| </div> |
| <h4 class="font-semibold mb-2">Выявление паттернов</h4> |
| <p class="text-gray-400 text-sm">Определяет повторяющиеся закономерности в фазах работы слотов</p> |
| </div> |
| <div class="text-center"> |
| <div class="w-14 h-14 bg-purple-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-purple-500/30"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" /> |
| </svg> |
| </div> |
| <h4 class="font-semibold mb-2">Прогнозирование</h4> |
| <p class="text-gray-400 text-sm">Предсказывает наступление фазы отдачи с точностью 89%</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <script> |
| |
| const drainCtx = document.getElementById('drainChart').getContext('2d'); |
| const payoutCtx = document.getElementById('payoutChart').getContext('2d'); |
| |
| const drainChart = new Chart(drainCtx, { |
| type: 'line', |
| data: { |
| labels: ['10:00', '10:15', '10:30', '10:45', '11:00', '11:15', '11:30'], |
| datasets: [{ |
| label: 'Коэффициент выигрыша', |
| data: [45, 42, 38, 35, 33, 30, 28], |
| borderColor: 'rgba(236, 72, 153, 1)', |
| backgroundColor: 'rgba(236, 72, 153, 0.1)', |
| borderWidth: 2, |
| tension: 0.4, |
| fill: true, |
| pointBackgroundColor: 'rgba(236, 72, 153, 1)', |
| pointRadius: 4, |
| pointHoverRadius: 6 |
| }] |
| }, |
| options: getChartOptions('Фаза слива') |
| }); |
| |
| const payoutChart = new Chart(payoutCtx, { |
| type: 'line', |
| data: { |
| labels: ['10:00', '10:15', '10:30', '10:45', '11:00', '11:15', '11:30'], |
| datasets: [{ |
| label: 'Коэффициент выигрыша', |
| data: [25, 30, 38, 45, 52, 58, 65], |
| borderColor: 'rgba(168, 85, 247, 1)', |
| backgroundColor: 'rgba(168, 85, 247, 0.1)', |
| borderWidth: 2, |
| tension: 0.4, |
| fill: true, |
| pointBackgroundColor: 'rgba(168, 85, 247, 1)', |
| pointRadius: 4, |
| pointHoverRadius: 6 |
| }] |
| }, |
| options: getChartOptions('Фаза отдачи') |
| }); |
| |
| function getChartOptions(title) { |
| return { |
| responsive: true, |
| maintainAspectRatio: false, |
| plugins: { |
| legend: { |
| display: false |
| }, |
| tooltip: { |
| mode: 'index', |
| intersect: false, |
| backgroundColor: 'rgba(15, 23, 42, 0.9)', |
| titleColor: '#e2e8f0', |
| bodyColor: '#cbd5e1', |
| borderColor: 'rgba(255, 255, 255, 0.1)', |
| borderWidth: 1, |
| padding: 12, |
| callbacks: { |
| label: function(context) { |
| return `${title}: ${context.parsed.y}%`; |
| } |
| } |
| } |
| }, |
| scales: { |
| y: { |
| beginAtZero: false, |
| grid: { |
| color: 'rgba(255, 255, 255, 0.05)', |
| drawBorder: false |
| }, |
| ticks: { |
| color: 'rgba(255, 255, 255, 0.6)', |
| callback: function(value) { |
| return value + '%'; |
| } |
| } |
| }, |
| x: { |
| grid: { |
| display: false, |
| drawBorder: false |
| }, |
| ticks: { |
| color: 'rgba(255, 255, 255, 0.6)' |
| } |
| } |
| } |
| }; |
| } |
| |
| |
| let currentPhase = 'drain'; |
| |
| function togglePhase() { |
| const toggleBtn = document.getElementById('toggleBtn'); |
| const toggleText = document.getElementById('toggleText'); |
| const drainPhase = document.getElementById('drainPhase'); |
| const payoutPhase = document.getElementById('payoutPhase'); |
| |
| |
| toggleBtn.classList.add('glitch-effect'); |
| toggleText.setAttribute('data-text', currentPhase === 'drain' ? 'Отдача' : 'Слив'); |
| |
| setTimeout(() => { |
| toggleBtn.classList.remove('glitch-effect'); |
| |
| if (currentPhase === 'drain') { |
| |
| toggleBtn.classList.add('payout'); |
| toggleText.textContent = 'Отдача'; |
| drainPhase.classList.remove('drain-glow'); |
| drainPhase.classList.add('opacity-70', 'scale-95'); |
| payoutPhase.classList.remove('opacity-70', 'scale-95'); |
| payoutPhase.classList.add('payout-glow'); |
| currentPhase = 'payout'; |
| } else { |
| |
| toggleBtn.classList.remove('payout'); |
| toggleText.textContent = 'Слив'; |
| payoutPhase.classList.remove('payout-glow'); |
| payoutPhase.classList.add('opacity-70', 'scale-95'); |
| drainPhase.classList.remove('opacity-70', 'scale-95'); |
| drainPhase.classList.add('drain-glow'); |
| currentPhase = 'drain'; |
| } |
| }, 300); |
| } |
| |
| |
| document.addEventListener('DOMContentLoaded', () => { |
| setTimeout(() => { |
| document.getElementById('drainPhase').classList.add('animate__animated', 'animate__fadeInLeft'); |
| document.getElementById('payoutPhase').classList.add('animate__animated', 'animate__fadeInRight'); |
| }, 500); |
| }); |
| </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=timoon811/phase3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |