Spaces:
Running
Running
File size: 25,027 Bytes
a99d4c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FBHelper - Умное расширение для работы с Facebook</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>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.float-animation {
animation: float 6s ease-in-out infinite;
}
.slide {
min-height: 100vh;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s, transform 0.8s;
position: absolute;
width: 100%;
top: 0;
left: 0;
padding: 2rem;
box-sizing: border-box;
}
.slide.active {
opacity: 1;
transform: translateY(0);
}
.progress-bar {
height: 4px;
background: #3b82f6;
position: fixed;
top: 0;
left: 0;
z-index: 100;
transition: width 0.3s;
}
.feature-card {
transition: all 0.3s;
transform: perspective(1000px) rotateX(0deg);
}
.feature-card:hover {
transform: perspective(1000px) rotateX(10deg);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.browser-window {
border-radius: 6px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
overflow: hidden;
}
.browser-header {
height: 30px;
background: #e5e7eb;
display: flex;
align-items: center;
padding: 0 10px;
}
.browser-button {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
}
.browser-content {
background: white;
height: 300px;
position: relative;
overflow: hidden;
}
</style>
</head>
<body class="bg-gray-50 font-sans overflow-x-hidden relative">
<div class="progress-bar" id="progressBar"></div>
<!-- Слайд 1: Заголовок -->
<div class="slide active flex flex-col justify-center items-center text-center bg-gradient-to-br from-blue-50 to-indigo-50">
<div class="max-w-4xl px-6">
<div class="float-animation mb-8">
<div class="inline-block p-4 rounded-xl bg-white shadow-lg">
<i class="fas fa-puzzle-piece text-6xl text-blue-500"></i>
</div>
</div>
<h1 class="text-5xl md:text-6xl font-bold text-gray-800 mb-6">FBHelper</h1>
<p class="text-xl md:text-2xl text-gray-600 mb-8">Ваш умный помощник для эффективной работы с Facebook</p>
<div class="flex justify-center space-x-4">
<span class="px-4 py-2 bg-blue-100 text-blue-800 rounded-full text-sm font-medium">Автопостинг</span>
<span class="px-4 py-2 bg-purple-100 text-purple-800 rounded-full text-sm font-medium">Аналитика</span>
<span class="px-4 py-2 bg-green-100 text-green-800 rounded-full text-sm font-medium">Безопасность</span>
</div>
</div>
<div class="absolute bottom-8 left-0 right-0 flex justify-center">
<div class="animate-bounce text-gray-400">
<i class="fas fa-chevron-down text-2xl"></i>
</div>
</div>
</div>
<!-- Слайд 2: Что такое FBHelper -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-indigo-50 to-purple-50">
<div class="max-w-4xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-8 text-center">Что такое FBHelper?</h2>
<div class="grid md:grid-cols-2 gap-8 items-center">
<div>
<p class="text-lg text-gray-600 mb-6">FBHelper - это мощное расширение для браузера, созданное для упрощения и автоматизации работы с Facebook.</p>
<ul class="space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-100 text-blue-600">
<i class="fas fa-check text-xs"></i>
</div>
</div>
<p class="ml-3 text-gray-700">Устанавливается в один клик</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-100 text-blue-600">
<i class="fas fa-check text-xs"></i>
</div>
</div>
<p class="ml-3 text-gray-700">Работает незаметно в фоновом режиме</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-100 text-blue-600">
<i class="fas fa-check text-xs"></i>
</div>
</div>
<p class="ml-3 text-gray-700">Не требует специальных знаний</p>
</li>
</ul>
</div>
<div class="browser-window">
<div class="browser-header">
<div class="browser-button bg-red-500"></div>
<div class="browser-button bg-yellow-500"></div>
<div class="browser-button bg-green-500"></div>
</div>
<div class="browser-content flex items-center justify-center">
<div class="text-center p-6">
<i class="fas fa-plus-circle text-5xl text-blue-500 mb-4"></i>
<p class="text-gray-700">Добавить FBHelper в браузер</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Слайд 3: Основные функции -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-purple-50 to-pink-50">
<div class="max-w-6xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-12 text-center">Основные функции</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="feature-card bg-white p-6 rounded-xl shadow-md">
<div class="text-blue-500 mb-4">
<i class="fas fa-robot text-4xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Автоматизация</h3>
<p class="text-gray-600">Автопостинг, планирование публикаций, автоматические ответы на сообщения.</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md">
<div class="text-purple-500 mb-4">
<i class="fas fa-chart-line text-4xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Аналитика</h3>
<p class="text-gray-600">Детальная статистика постов, анализ аудитории, отслеживание эффективности.</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md">
<div class="text-green-500 mb-4">
<i class="fas fa-shield-alt text-4xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Безопасность</h3>
<p class="text-gray-600">Защита от спама, фильтрация фейковых аккаунтов, контроль доступа.</p>
</div>
</div>
</div>
</div>
<!-- Слайд 4: Как это работает -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-pink-50 to-red-50">
<div class="max-w-4xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-12 text-center">Как это работает?</h2>
<div class="relative">
<div class="absolute left-4 h-full w-0.5 bg-gray-200 transform -translate-x-1/2 top-0"></div>
<div class="space-y-10">
<div class="relative pl-12">
<div class="absolute left-0 transform -translate-x-1/2 flex items-center justify-center w-8 h-8 rounded-full bg-blue-500 text-white">
1
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Установка</h3>
<p class="text-gray-600">Добавьте расширение из официального магазина вашего браузера.</p>
</div>
</div>
<div class="relative pl-12">
<div class="absolute left-0 transform -translate-x-1/2 flex items-center justify-center w-8 h-8 rounded-full bg-blue-500 text-white">
2
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Настройка</h3>
<p class="text-gray-600">Выберите нужные функции в простом интерфейсе настроек.</p>
</div>
</div>
<div class="relative pl-12">
<div class="absolute left-0 transform -translate-x-1/2 flex items-center justify-center w-8 h-8 rounded-full bg-blue-500 text-white">
3
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Использование</h3>
<p class="text-gray-600">Работайте с Facebook как обычно - FBHelper сделает всё остальное.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Слайд 5: Преимущества -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-red-50 to-orange-50">
<div class="max-w-4xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-12 text-center">Почему FBHelper?</h2>
<div class="grid gap-6 md:grid-cols-2">
<div class="bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-6 rounded-xl shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg text-blue-600">
<i class="fas fa-bolt text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-800">Экономия времени</h3>
</div>
<p class="text-gray-600">Автоматизация рутинных задач освобождает до 3 часов в день для важных дел.</p>
</div>
<div class="bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-6 rounded-xl shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-purple-100 p-3 rounded-lg text-purple-600">
<i class="fas fa-chart-pie text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-800">Увеличение охвата</h3>
</div>
<p class="text-gray-600">Оптимальное время публикаций и умные алгоритмы повышают вовлечённость.</p>
</div>
<div class="bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-6 rounded-xl shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-green-100 p-3 rounded-lg text-green-600">
<i class="fas fa-lock text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-800">Защита аккаунта</h3>
</div>
<p class="text-gray-600">Мониторинг подозрительной активности и автоматические уведомления о угрозах.</p>
</div>
<div class="bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-6 rounded-xl shadow-sm border border-gray-100">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-yellow-100 p-3 rounded-lg text-yellow-600">
<i class="fas fa-cogs text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-800">Гибкие настройки</h3>
</div>
<p class="text-gray-600">Персонализация под ваши задачи с помощью десятков параметров.</p>
</div>
</div>
</div>
</div>
<!-- Слайд 6: Скриншоты -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-orange-50 to-yellow-50">
<div class="max-w-6xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-12 text-center">FBHelper в действии</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="browser-window">
<div class="browser-header">
<div class="browser-button bg-red-500"></div>
<div class="browser-button bg-yellow-500"></div>
<div class="browser-button bg-green-500"></div>
</div>
<div class="browser-content">
<div class="absolute inset-0 bg-gradient-to-br from-blue-400 to-indigo-500 flex items-center justify-center">
<div class="text-white text-center p-6">
<i class="fas fa-calendar-alt text-5xl mb-4"></i>
<h3 class="text-xl font-semibold mb-2">Планировщик публикаций</h3>
<p class="opacity-90">Удобное расписание для ваших постов</p>
</div>
</div>
</div>
</div>
<div class="browser-window">
<div class="browser-header">
<div class="browser-button bg-red-500"></div>
<div class="browser-button bg-yellow-500"></div>
<div class="browser-button bg-green-500"></div>
</div>
<div class="browser-content">
<div class="absolute inset-0 bg-gradient-to-br from-purple-400 to-pink-500 flex items-center justify-center">
<div class="text-white text-center p-6">
<i class="fas fa-chart-bar text-5xl mb-4"></i>
<h3 class="text-xl font-semibold mb-2">Детальная аналитика</h3>
<p class="opacity-90">Все метрики в одном месте</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Слайд 7: Совместимость -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-yellow-50 to-green-50">
<div class="max-w-4xl px-6">
<h2 class="text-4xl font-bold text-gray-800 mb-12 text-center">Совместимость</h2>
<div class="grid md:grid-cols-4 gap-6">
<div class="flex flex-col items-center">
<div class="bg-white p-4 rounded-full shadow-md mb-3">
<i class="fab fa-chrome text-4xl text-blue-500"></i>
</div>
<p class="font-medium text-gray-700">Chrome</p>
</div>
<div class="flex flex-col items-center">
<div class="bg-white p-4 rounded-full shadow-md mb-3">
<i class="fab fa-firefox text-4xl text-orange-500"></i>
</div>
<p class="font-medium text-gray-700">Firefox</p>
</div>
<div class="flex flex-col items-center">
<div class="bg-white p-4 rounded-full shadow-md mb-3">
<i class="fab fa-edge text-4xl text-blue-600"></i>
</div>
<p class="font-medium text-gray-700">Edge</p>
</div>
<div class="flex flex-col items-center">
<div class="bg-white p-4 rounded-full shadow-md mb-3">
<i class="fab fa-safari text-4xl text-blue-400"></i>
</div>
<p class="font-medium text-gray-700">Safari</p>
</div>
</div>
<div class="mt-12 bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-6 rounded-xl shadow-sm max-w-2xl mx-auto">
<div class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-2xl text-blue-500 mt-1"></i>
</div>
<div class="ml-4">
<p class="text-gray-700">FBHelper работает на всех популярных браузерах и синхронизирует данные между устройствами через облако.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Слайд 8: Завершение -->
<div class="slide flex flex-col justify-center items-center bg-gradient-to-br from-green-50 to-blue-50">
<div class="max-w-2xl px-6 text-center">
<div class="bg-white bg-opacity-80 backdrop-filter backdrop-blur-sm p-8 rounded-xl shadow-sm">
<div class="inline-block p-4 rounded-xl bg-blue-100 text-blue-600 mb-6">
<i class="fas fa-puzzle-piece text-4xl"></i>
</div>
<h2 class="text-3xl font-bold text-gray-800 mb-4">Готовы попробовать FBHelper?</h2>
<p class="text-xl text-gray-600 mb-8">Добавьте расширение в ваш браузер и начните работать с Facebook эффективнее уже сегодня!</p>
<div class="flex justify-center">
<div class="animate-pulse inline-flex items-center px-6 py-3 bg-gradient-to-r from-blue-500 to-blue-600 text-white font-medium rounded-lg shadow-lg">
<i class="fas fa-download mr-2"></i>
<span>Установить FBHelper</span>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const slides = document.querySelectorAll('.slide');
const progressBar = document.getElementById('progressBar');
let currentSlide = 0;
let isScrolling = false;
let scrollTimeout;
// Показать первый слайд
slides[0].classList.add('active');
// Обработчик колеса мыши
window.addEventListener('wheel', function(e) {
if (isScrolling) return;
clearTimeout(scrollTimeout);
isScrolling = true;
if (e.deltaY > 0) {
// Прокрутка вниз - следующий слайд
if (currentSlide < slides.length - 1) {
goToSlide(currentSlide + 1);
}
} else {
// Прокрутка вверх - предыдущий слайд
if (currentSlide > 0) {
goToSlide(currentSlide - 1);
}
}
scrollTimeout = setTimeout(function() {
isScrolling = false;
}, 1000);
});
// Обработчик касаний для мобильных устройств
let touchStartY = 0;
let touchEndY = 0;
document.addEventListener('touchstart', function(e) {
touchStartY = e.changedTouches[0].screenY;
}, false);
document.addEventListener('touchend', function(e) {
if (isScrolling) return;
touchEndY = e.changedTouches[0].screenY;
if (touchEndY < touchStartY) {
// Свайп вверх - следующий слайд
if (currentSlide < slides.length - 1) {
goToSlide(currentSlide + 1);
}
} else if (touchEndY > touchStartY) {
// Свайп вниз - предыдущий слайд
if (currentSlide > 0) {
goToSlide(currentSlide - 1);
}
}
isScrolling = true;
setTimeout(function() {
isScrolling = false;
}, 1000);
}, false);
// Функция перехода к слайду
function goToSlide(n) {
slides[currentSlide].classList.remove('active');
currentSlide = n;
slides[currentSlide].classList.add('active');
// Обновление прогрессбара
const progress = ((currentSlide + 1) / slides.length) * 100;
progressBar.style.width = progress + '%';
// Прокрутка к верху страницы
window.scrollTo(0, 0);
}
// Инициализация прогрессбара
progressBar.style.width = ((currentSlide + 1) / slides.length) * 100 + '%';
});
</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/fbhelper123" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |