-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasychecker.html
More file actions
219 lines (192 loc) · 7.29 KB
/
easychecker.html
File metadata and controls
219 lines (192 loc) · 7.29 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyChecker</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
/* Общие стили */
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff; /* Белый фон */
color: #000000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
position: relative;
flex-direction: column;
text-align: center;
}
/* Контейнер с контентом */
.container {
width: 90%;
max-width: 800px;
padding: 2em;
background: rgba(255, 255, 255, 0.9); /* Белый, но с небольшой прозрачностью */
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
opacity: 0;
animation: fadeIn 1s forwards;
transition: transform 0.5s ease-out;
}
/* Анимация для появления контейнера */
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(50px); }
100% { opacity: 1; transform: translateY(0); }
}
/* Заголовок с изменяющимся цветом в зависимости от фона */
h1 {
font-size: 3em;
margin-bottom: 1em;
font-weight: 700;
color: #3498db; /* Цвет, как у кружочков */
opacity: 0;
animation: slideIn 1s ease-out 0.5s forwards;
}
@keyframes slideIn {
0% { opacity: 0; transform: translateX(-50px); }
100% { opacity: 1; transform: translateX(0); }
}
/* Текст */
p {
font-size: 1.3em;
margin-bottom: 2em;
color: #333333; /* Темный цвет текста для читаемости */
opacity: 0;
animation: fadeInText 1s ease-out 1s forwards;
}
@keyframes fadeInText {
0% { opacity: 0; transform: translateY(30px); }
100% { opacity: 1; transform: translateY(0); }
}
/* Стиль для ссылки скачивания */
a {
text-decoration: none;
color: #ffffff;
font-size: 1.3em;
padding: 12px 24px;
background-color: #3498db;
border-radius: 8px;
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
opacity: 0;
animation: fadeInLink 1s ease-out 1.5s forwards;
cursor: pointer;
}
/* Анимация для ссылки */
@keyframes fadeInLink {
0% { opacity: 0; transform: translateY(30px); }
100% { opacity: 1; transform: translateY(0); }
}
a:hover {
background-color: #8e44ad;
transform: scale(1.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* Стиль для текста с паролем */
.password {
font-weight: bold;
color: #3498db;
font-size: 1.4em;
margin-bottom: 2em;
opacity: 0;
animation: fadeInText 1s ease-out 2s forwards;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
h1 {
font-size: 2.4em;
}
p {
font-size: 1em;
}
.password {
font-size: 1.2em;
}
}
/* Мелкие эффекты на мышь */
.container:hover {
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
/* Стиль для кружочков с 3D эффектом */
.circle {
position: absolute;
border-radius: 50%;
background-color: #3498db;
opacity: 0.6;
pointer-events: none;
animation: moveCircle 10s linear infinite, floatCircle 3s ease-in-out infinite;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 3D эффект */
}
/* Плавное движение кружочков по экрану */
@keyframes moveCircle {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100vw, 100vh); /* Двигаются вдоль левого края */
}
}
/* Плавание кружочков (эффект 3D движения) */
@keyframes floatCircle {
0% {
transform: translateZ(0);
}
50% {
transform: translateZ(30px); /* Плавание вперед */
}
100% {
transform: translateZ(0);
}
}
</style>
</head>
<body>
<!-- Фон с анимацией градиента -->
<div class="background"></div>
<!-- Кружочки -->
<div class="circle" style="width: 60px; height: 60px; top: 10%; left: 10%; animation-duration: 6s;"></div>
<div class="circle" style="width: 70px; height: 70px; top: 40%; left: 20%; animation-duration: 7s;"></div>
<div class="circle" style="width: 50px; height: 50px; top: 70%; left: 50%; animation-duration: 8s;"></div>
<div class="circle" style="width: 65px; height: 65px; top: 80%; left: 70%; animation-duration: 9s;"></div>
<div class="circle" style="width: 55px; height: 55px; top: 50%; left: 80%; animation-duration: 10s;"></div>
<div class="circle" style="width: 80px; height: 80px; top: 15%; left: 60%; animation-duration: 11s;"></div>
<div class="circle" style="width: 45px; height: 45px; top: 30%; left: 80%; animation-duration: 5s;"></div>
<div class="circle" style="width: 60px; height: 60px; top: 60%; left: 10%; animation-duration: 7s;"></div>
<div class="container">
<h1>Скачайте EasyChecker</h1>
<p>Мы сотрудничаем с HolyWorld, ReallyWorld и FunTime.<br> Мы гарантируем вашу безопасность!</p>
<p class="password">Пароль: EasyCheckerBeta.exe</p>
<a href="https://mega.nz/file/cAo1kapC#bIxpGzT6IfAw-IrZE75DZ0oSjBfjHBiEPiPtbWL_2Kg" download>Скачать EasyChecker</a>
</div>
<script>
// Получаем все кружочки
const circles = document.querySelectorAll('.circle');
// Добавляем слушатель события для отслеживания движения мыши
document.addEventListener('mousemove', (e) => {
const mouseX = e.clientX;
const mouseY = e.clientY;
circles.forEach(circle => {
const circleRect = circle.getBoundingClientRect();
const circleX = circleRect.left + circleRect.width / 2;
const circleY = circleRect.top + circleRect.height / 2;
const deltaX = circleX - mouseX;
const deltaY = circleY - mouseY;
const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);
const maxDistance = 100; // Максимальное расстояние, на которое кружок может отталкиваться
// Рассчитываем силу отталкивания
const moveDistance = Math.min(maxDistance, 50 / distance) * 100;
// Отталкиваем кружок от курсора
const moveX = (deltaX / distance) * moveDistance;
const moveY = (deltaY / distance) * moveDistance;
// Применяем изменения позиции
circle.style.transform = translate(${moveX}px, ${moveY}px);
});
});
</script>