|
|
<!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> |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
|
<style> |
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap'); |
|
|
|
|
|
body { |
|
|
font-family: 'Inter', sans-serif; |
|
|
background-color: #0a0a0a; |
|
|
color: #E1E1E1; |
|
|
overflow-x: hidden; |
|
|
} |
|
|
|
|
|
.glow-text { |
|
|
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7); |
|
|
} |
|
|
|
|
|
.glow-box { |
|
|
box-shadow: 0 0 15px rgba(246, 252, 121, 0.5); |
|
|
} |
|
|
|
|
|
.glow-box:hover { |
|
|
box-shadow: 0 0 25px rgba(246, 252, 121, 0.8); |
|
|
} |
|
|
|
|
|
.border-glow { |
|
|
border-color: #f6fc79; |
|
|
box-shadow: 0 0 10px rgba(246, 252, 121, 0.3); |
|
|
} |
|
|
|
|
|
.border-glow:hover { |
|
|
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5); |
|
|
} |
|
|
|
|
|
.dashboard-container { |
|
|
perspective: 1000px; |
|
|
transform-style: preserve-3d; |
|
|
} |
|
|
|
|
|
.dashboard { |
|
|
transform: rotateY(-15deg) rotateX(5deg); |
|
|
transition: all 0.5s ease; |
|
|
} |
|
|
|
|
|
.dashboard:hover { |
|
|
transform: rotateY(-10deg) rotateX(3deg); |
|
|
} |
|
|
|
|
|
.traffic-flow { |
|
|
position: relative; |
|
|
height: 100%; |
|
|
overflow: hidden; |
|
|
} |
|
|
|
|
|
.flow-item { |
|
|
position: absolute; |
|
|
transition: all 0.5s ease; |
|
|
} |
|
|
|
|
|
.pulse { |
|
|
animation: pulse 2s infinite; |
|
|
} |
|
|
|
|
|
@keyframes pulse { |
|
|
0% { transform: scale(1); opacity: 1; } |
|
|
50% { transform: scale(1.05); opacity: 0.8; } |
|
|
100% { transform: scale(1); opacity: 1; } |
|
|
} |
|
|
|
|
|
.particles { |
|
|
position: absolute; |
|
|
top: 0; |
|
|
left: 0; |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
pointer-events: none; |
|
|
} |
|
|
|
|
|
.particle { |
|
|
position: absolute; |
|
|
background-color: rgba(246, 252, 121, 0.6); |
|
|
border-radius: 50%; |
|
|
pointer-events: none; |
|
|
} |
|
|
|
|
|
.tooltip { |
|
|
visibility: hidden; |
|
|
opacity: 0; |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
|
|
|
.flow-item:hover .tooltip { |
|
|
visibility: visible; |
|
|
opacity: 1; |
|
|
} |
|
|
|
|
|
.nav-link { |
|
|
position: relative; |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
|
|
|
.nav-link:hover { |
|
|
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7); |
|
|
color: #f6fc79 !important; |
|
|
} |
|
|
|
|
|
.process-arrow { |
|
|
position: absolute; |
|
|
color: #f6fc79; |
|
|
font-size: 24px; |
|
|
top: 50%; |
|
|
transform: translateY(-50%); |
|
|
z-index: 1; |
|
|
} |
|
|
|
|
|
@media (max-width: 768px) { |
|
|
.dashboard { |
|
|
transform: none; |
|
|
} |
|
|
} |
|
|
.arrow-animation { |
|
|
animation: arrowPulse 1.5s infinite; |
|
|
} |
|
|
@keyframes arrowPulse { |
|
|
0% { opacity: 0.5; transform: translateY(-50%) translateX(0); } |
|
|
50% { opacity: 1; transform: translateY(-50%) translateX(5px); } |
|
|
100% { opacity: 0.5; transform: translateY(-50%) translateX(0); } |
|
|
} |
|
|
|
|
|
|
|
|
.section-title { |
|
|
animation: slideUp 0.8s ease-out, bounce 0.5s ease 0.8s; |
|
|
} |
|
|
|
|
|
@keyframes slideUp { |
|
|
from { |
|
|
transform: translateY(30px); |
|
|
opacity: 0; |
|
|
} |
|
|
to { |
|
|
transform: translateY(0); |
|
|
opacity: 1; |
|
|
} |
|
|
} |
|
|
|
|
|
@keyframes bounce { |
|
|
0%, 100% { transform: translateY(0); } |
|
|
50% { transform: translateY(-10px); } |
|
|
} |
|
|
|
|
|
.chat-bubble { |
|
|
opacity: 0; |
|
|
transform: translateY(20px); |
|
|
animation: fadeIn 0.5s forwards; |
|
|
} |
|
|
|
|
|
@keyframes fadeIn { |
|
|
to { |
|
|
opacity: 1; |
|
|
transform: translateY(0); |
|
|
} |
|
|
} |
|
|
|
|
|
.typing-indicator { |
|
|
display: inline-block; |
|
|
} |
|
|
|
|
|
.typing-dot { |
|
|
display: inline-block; |
|
|
width: 6px; |
|
|
height: 6px; |
|
|
border-radius: 50%; |
|
|
background-color: #E1E1E1; |
|
|
margin-right: 4px; |
|
|
opacity: 0; |
|
|
animation: typingAnimation 1.5s infinite; |
|
|
} |
|
|
|
|
|
.typing-dot:nth-child(1) { |
|
|
animation-delay: 0s; |
|
|
} |
|
|
|
|
|
.typing-dot:nth-child(2) { |
|
|
animation-delay: 0.3s; |
|
|
} |
|
|
|
|
|
.typing-dot:nth-child(3) { |
|
|
animation-delay: 0.6s; |
|
|
margin-right: 0; |
|
|
} |
|
|
|
|
|
@keyframes typingAnimation { |
|
|
0% { opacity: 0.3; transform: translateY(0); } |
|
|
50% { opacity: 1; transform: translateY(-3px); } |
|
|
100% { opacity: 0.3; transform: translateY(0); } |
|
|
} |
|
|
|
|
|
.typewriter { |
|
|
overflow: hidden; |
|
|
white-space: nowrap; |
|
|
border-right: 2px solid #f6fc79; |
|
|
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: #f6fc79; } |
|
|
} |
|
|
|
|
|
.chat-bg-element { |
|
|
position: absolute; |
|
|
background-color: rgba(26, 26, 26, 0.1); |
|
|
border-radius: 20px; |
|
|
backdrop-filter: blur(5px); |
|
|
z-index: -1; |
|
|
} |
|
|
|
|
|
.user-avatar { |
|
|
width: 40px; |
|
|
height: 40px; |
|
|
border-radius: 50%; |
|
|
background-color: #1a1a1a; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
justify-content: center; |
|
|
color: #f6fc79; |
|
|
font-weight: bold; |
|
|
font-size: 16px; |
|
|
} |
|
|
|
|
|
.user-location { |
|
|
font-size: 12px; |
|
|
color: #888; |
|
|
margin-top: 2px; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="min-h-screen flex flex-col items-center justify-center py-16 px-4 sm:px-6 lg:px-8"> |
|
|
|
|
|
<section id="reviews" class="w-full max-w-4xl mx-auto relative overflow-hidden py-12"> |
|
|
|
|
|
<div class="chat-bg-element w-64 h-32 top-10 left-10 opacity-20"></div> |
|
|
<div class="chat-bg-element w-48 h-24 bottom-20 right-10 opacity-15"></div> |
|
|
<div class="chat-bg-element w-56 h-28 top-1/3 right-20 opacity-10"></div> |
|
|
|
|
|
|
|
|
<div class="particles" id="particles-js"></div> |
|
|
|
|
|
|
|
|
<div class="text-center mb-12"> |
|
|
<h2 class="section-title text-3xl sm:text-4xl md:text-5xl font-bold uppercase text-[#f6fc79] glow-text mb-4"> |
|
|
Отзывы учеников |
|
|
</h2> |
|
|
<p class="text-[#E1E1E1] italic opacity-80 text-sm sm:text-base"> |
|
|
Реальные отзывы из личных чатов учеников после прохождения курса |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="space-y-4 max-w-2xl mx-auto relative"> |
|
|
|
|
|
<div class="chat-bubble flex items-start gap-3" style="animation-delay: 0.5s"> |
|
|
<div class="flex flex-col items-center"> |
|
|
<div class="user-avatar">А</div> |
|
|
<div class="user-location">Москва</div> |
|
|
</div> |
|
|
<div class="bg-[#1a1a1a] rounded-2xl p-4 max-w-[80%] relative glow-box"> |
|
|
<div class="font-medium text-[#f6fc79] mb-1">Анастасия</div> |
|
|
<div class="typing-indicator" id="typing-1"> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
</div> |
|
|
<div class="message-content hidden"> |
|
|
"Спасибо за курс! Уже на 2-й неделе получила <span class="text-[#f6fc79]">$187</span> с первого залива по гамбле" |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="chat-bubble flex items-start gap-3" style="animation-delay: 1.5s"> |
|
|
<div class="flex flex-col items-center"> |
|
|
<div class="user-avatar">А</div> |
|
|
<div class="user-location">Алматы</div> |
|
|
</div> |
|
|
<div class="bg-[#1a1a1a] rounded-2xl p-4 max-w-[80%] relative glow-box"> |
|
|
<div class="font-medium text-[#f6fc79] mb-1">Азамат</div> |
|
|
<div class="typing-indicator" id="typing-2"> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
</div> |
|
|
<div class="message-content hidden"> |
|
|
"Никогда не думал, что без опыта можно зарабатывать <span class="text-[#f6fc79]">$300–400 в день</span>. Это просто невероятно" |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="chat-bubble flex items-start gap-3" style="animation-delay: 2.5s"> |
|
|
<div class="flex flex-col items-center"> |
|
|
<div class="user-avatar">М</div> |
|
|
<div class="user-location">Санкт-Петербург</div> |
|
|
</div> |
|
|
<div class="bg-[#1a1a1a] rounded-2xl p-4 max-w-[80%] relative glow-box"> |
|
|
<div class="font-medium text-[#f6fc79] mb-1">Михаил</div> |
|
|
<div class="typing-indicator" id="typing-3"> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
</div> |
|
|
<div class="message-content hidden"> |
|
|
"Теперь всё чётко: креативы, Keitaro, связка — и каждый день идут <span class="text-[#f6fc79]">заявки</span>" |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="chat-bubble flex items-start gap-3" style="animation-delay: 3.5s"> |
|
|
<div class="flex flex-col items-center"> |
|
|
<div class="user-avatar">Е</div> |
|
|
<div class="user-location">Новосибирск</div> |
|
|
</div> |
|
|
<div class="bg-[#1a1a1a] rounded-2xl p-4 max-w-[80%] relative glow-box"> |
|
|
<div class="font-medium text-[#f6fc79] mb-1">Екатерина</div> |
|
|
<div class="typing-indicator" id="typing-4"> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
</div> |
|
|
<div class="message-content hidden"> |
|
|
"После 3 месяцев обучения мой доход <span class="text-[#f6fc79]">вырос в 5 раз</span>. Теперь понимаю, как масштабироваться!" |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="chat-bubble flex items-start gap-3" style="animation-delay: 4.5s"> |
|
|
<div class="flex flex-col items-center"> |
|
|
<div class="user-avatar">Д</div> |
|
|
<div class="user-location">Киев</div> |
|
|
</div> |
|
|
<div class="bg-[#1a1a1a] rounded-2xl p-4 max-w-[80%] relative glow-box"> |
|
|
<div class="font-medium text-[#f6fc79] mb-1">Дмитрий</div> |
|
|
<div class="typing-indicator" id="typing-5"> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
<span class="typing-dot"></span> |
|
|
</div> |
|
|
<div class="message-content hidden"> |
|
|
"Сначала сомневался, но уже через месяц <span class="text-[#f6fc79]">окупил курс в 10 раз</span>. Спасибо за структуру!" |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
<script> |
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
|
|
createParticles(); |
|
|
|
|
|
|
|
|
const chatBubbles = document.querySelectorAll('.chat-bubble'); |
|
|
|
|
|
chatBubbles.forEach((bubble, index) => { |
|
|
setTimeout(() => { |
|
|
bubble.style.animation = 'fadeIn 0.5s forwards'; |
|
|
|
|
|
|
|
|
const typingId = `typing-${index + 1}`; |
|
|
const typingElement = document.getElementById(typingId); |
|
|
const messageContent = bubble.querySelector('.message-content'); |
|
|
|
|
|
setTimeout(() => { |
|
|
typingElement.style.display = 'none'; |
|
|
messageContent.classList.remove('hidden'); |
|
|
messageContent.classList.add('typewriter'); |
|
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
messageContent.classList.remove('typewriter'); |
|
|
messageContent.style.borderRight = 'none'; |
|
|
}, 3500); |
|
|
}, 1500); |
|
|
}, index * 2000); |
|
|
}); |
|
|
}); |
|
|
|
|
|
function createParticles() { |
|
|
const container = document.getElementById('particles-js'); |
|
|
const particleCount = 30; |
|
|
|
|
|
for (let i = 0; i < particleCount; i++) { |
|
|
const particle = document.createElement('div'); |
|
|
particle.classList.add('particle'); |
|
|
|
|
|
|
|
|
const size = Math.random() * 2 + 1; |
|
|
particle.style.width = `${size}px`; |
|
|
particle.style.height = `${size}px`; |
|
|
|
|
|
|
|
|
particle.style.left = `${Math.random() * 100}%`; |
|
|
particle.style.top = `${Math.random() * 100}%`; |
|
|
|
|
|
|
|
|
const duration = Math.random() * 10 + 5; |
|
|
const delay = Math.random() * 5; |
|
|
particle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`; |
|
|
|
|
|
container.appendChild(particle); |
|
|
} |
|
|
|
|
|
|
|
|
const style = document.createElement('style'); |
|
|
style.innerHTML = ` |
|
|
@keyframes float { |
|
|
0% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; } |
|
|
50% { transform: translate(${Math.random() * 100 - 50}px, ${Math.random() * 100 - 50}px) rotate(180deg); opacity: 0.8; } |
|
|
100% { transform: translate(0, 0) rotate(360deg); opacity: 0.3; } |
|
|
} |
|
|
`; |
|
|
document.head.appendChild(style); |
|
|
} |
|
|
</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/block7tmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |