tmtblock2 / index.html
timoon811's picture
Add 3 files
dff9e37 verified
<!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); }
}
/* Custom styles for this section */
.section-target {
min-height: 100vh;
position: relative;
overflow: hidden;
}
.card-glow {
position: relative;
}
.card-glow::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 20px;
background: linear-gradient(to top, rgba(246, 252, 121, 0.2), transparent);
border-radius: 50%;
filter: blur(5px);
opacity: 0;
transition: opacity 0.3s ease;
}
.card-glow:hover::after {
opacity: 1;
}
.icon-hover {
transition: all 0.3s ease;
}
.card:hover .icon-hover {
transform: translateY(-5px) rotate(5deg);
filter: drop-shadow(0 5px 5px rgba(246, 252, 121, 0.3));
}
.fade-in-up {
animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.vibrate {
animation: vibrate 0.3s linear infinite;
}
@keyframes vibrate {
0% { transform: rotate(0deg); }
25% { transform: rotate(2deg); }
50% { transform: rotate(0deg); }
75% { transform: rotate(-2deg); }
100% { transform: rotate(0deg); }
}
.scan-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(to right, transparent, #f6fc79, transparent);
z-index: 10;
animation: scan 3s linear infinite;
opacity: 0;
}
@keyframes scan {
0% { top: 0; opacity: 0.7; }
100% { top: 100%; opacity: 0; }
}
.show-scan {
animation: showScan 1.5s ease forwards;
}
@keyframes showScan {
0% { opacity: 0; }
50% { opacity: 0.7; }
100% { opacity: 0; }
}
.icon-container {
width: 50px;
height: 50px;
border-radius: 12px;
background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
}
.icon-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(246, 252, 121, 0) 0%,
rgba(246, 252, 121, 0.1) 50%,
rgba(246, 252, 121, 0) 100%
);
transform: rotate(30deg);
transition: all 0.6s ease;
}
.card:hover .icon-container::before {
transform: rotate(30deg) translate(20%, 20%);
}
.icon-target {
color: #f6fc79;
font-size: 24px;
}
</style>
</head>
<body>
<section class="section-target w-full py-20 px-4 sm:px-6 lg:px-8">
<!-- Scan line effect -->
<div id="scanLine" class="scan-line"></div>
<div class="max-w-7xl mx-auto h-full flex flex-col lg:flex-row items-center justify-center gap-12">
<!-- Left side - Text content -->
<div class="lg:w-1/2 space-y-6 fade-in-up" style="animation-delay: 0.2s;">
<div class="flex items-center gap-3">
<div class="icon-container">
<i class="fas fa-bullseye icon-target"></i>
</div>
<h2 class="text-4xl md:text-5xl font-bold uppercase text-[#f6fc79] tracking-wide glow-text">
Для кого этот курс
</h2>
</div>
<p class="text-lg md:text-xl text-[#E1E1E1] opacity-90 max-w-2xl fade-in-up" style="animation-delay: 0.4s;">
Курс подойдёт тем, кто хочет зарабатывать онлайн — даже если у вас нет опыта. Простыми словами, пошагово и с поддержкой на каждом этапе.
</p>
</div>
<!-- Right side - Cards -->
<div class="lg:w-1/2 w-full">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Card 1 -->
<div class="card bg-[#121212] rounded-2xl p-6 border border-[#1f1f1f] transition-all duration-300 hover:border-[#f6fc79] glow-box card-glow fade-in-up" style="animation-delay: 0.6s;">
<div class="flex flex-col space-y-4">
<div class="icon-container">
<i class="fas fa-user-graduate icon-target"></i>
</div>
<h3 class="text-xl font-bold text-white">Новички без опыта в маркетинге</h3>
<p class="text-[#E1E1E1] opacity-80">
"Мы научим с нуля. Без сложных терминов и лишней теории — только практика."
</p>
</div>
</div>
<!-- Card 2 -->
<div class="card bg-[#121212] rounded-2xl p-6 border border-[#1f1f1f] transition-all duration-300 hover:border-[#f6fc79] glow-box card-glow fade-in-up" style="animation-delay: 0.8s;">
<div class="flex flex-col space-y-4">
<div class="icon-container">
<i class="fas fa-briefcase icon-target"></i>
</div>
<h3 class="text-xl font-bold text-white">Предприниматели, желающие освоить онлайн-заработок</h3>
<p class="text-[#E1E1E1] opacity-80">
"Построим новую нишу или усилим текущий бизнес через трафик."
</p>
</div>
</div>
<!-- Card 3 -->
<div class="card bg-[#121212] rounded-2xl p-6 border border-[#1f1f1f] transition-all duration-300 hover:border-[#f6fc79] glow-box card-glow fade-in-up" style="animation-delay: 1.0s;">
<div class="flex flex-col space-y-4">
<div class="icon-container">
<i class="fas fa-chart-line icon-target"></i>
</div>
<h3 class="text-xl font-bold text-white">Маркетологи, стремящиеся увеличить доход</h3>
<p class="text-[#E1E1E1] opacity-80">
"Арбитраж — это масштаб. Освой навыки, которые приносят x2–x5 к доходу."
</p>
</div>
</div>
<!-- Card 4 -->
<div class="card bg-[#121212] rounded-2xl p-6 border border-[#1f1f1f] transition-all duration-300 hover:border-[#f6fc79] glow-box card-glow fade-in-up" style="animation-delay: 1.2s;">
<div class="flex flex-col space-y-4">
<div class="icon-container">
<i class="fas fa-globe-americas icon-target"></i>
</div>
<h3 class="text-xl font-bold text-white">Те, кто хочет работать удалённо и зарабатывать в $</h3>
<p class="text-[#E1E1E1] opacity-80">
"Работа без офиса, заказчиков и потолка по доходу. Только результат."
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
// Trigger scan line animation when page loads
document.addEventListener('DOMContentLoaded', function() {
const scanLine = document.getElementById('scanLine');
// Initial scan
setTimeout(() => {
scanLine.classList.add('show-scan');
}, 500);
// Add vibrate animation to icons when cards are hovered
const cards = document.querySelectorAll('.card');
cards.forEach(card => {
card.addEventListener('mouseenter', function() {
const icon = this.querySelector('.icon-container');
icon.classList.add('vibrate');
// Add particles effect
createParticles(this);
});
card.addEventListener('mouseleave', function() {
const icon = this.querySelector('.icon-container');
icon.classList.remove('vibrate');
});
});
// Create particles effect
function createParticles(element) {
const rect = element.getBoundingClientRect();
const colors = ['#f6fc79', '#f6fc79', '#f6fc79'];
for (let i = 0; i < 8; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 2px and 5px
const size = Math.random() * 3 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position within the card
const x = Math.random() * rect.width;
const y = Math.random() * rect.height;
// Random color
const color = colors[Math.floor(Math.random() * colors.length)];
particle.style.backgroundColor = color;
// Set initial position
particle.style.left = `${x}px`;
particle.style.top = `${y}px`;
// Add to card
element.appendChild(particle);
// Animate
const animation = particle.animate([
{ transform: 'translate(0, 0)', opacity: 1 },
{ transform: `translate(${(Math.random() - 0.5) * 60}px, ${(Math.random() - 0.5) * 60}px)`, opacity: 0 }
], {
duration: Math.random() * 1000 + 500,
easing: 'cubic-bezier(0.4, 0, 0.2, 1)'
});
animation.onfinish = () => particle.remove();
}
}
});
</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/tmtblock2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>