-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
324 lines (295 loc) · 9.56 KB
/
index.html
File metadata and controls
324 lines (295 loc) · 9.56 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
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MaxNT Official</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background: linear-gradient(270deg, #a8e6cf, #dcedc1);
background-size: 400% 400%;
animation: animatedBackground 15s ease infinite;
color: #333;
line-height: 1.6;
}
header {
background-color: rgba(56, 142, 60, 0.9);
color: #fff;
padding: 1rem 2rem;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
main {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
section {
background-color: rgba(255, 255, 255, 0.9);
padding: 1.5rem;
margin-bottom: 2rem;
border-radius: 12px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
h1, h2 {
margin-bottom: 1rem;
animation: fadeIn 1s ease-in-out both;
}
.button-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.btn {
background-color: #1e88e5;
color: #fff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn:hover {
background-color: #1565c0;
transform: translateY(-2px);
}
footer {
text-align: center;
padding: 1rem;
background-color: rgba(255, 255, 255, 0.7);
color: #333;
}
@keyframes animatedBackground {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.btn {
background-color: #1e88e5;
color: #fff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease, transform 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
animation: fadeInUp 1s ease both;
}
.btn:nth-child(2) {
animation-delay: 0.2s;
}
.btn:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
html {
scroll-behavior: smooth;
}
section:hover {
transform: scale(1.02);
transition: transform 0.3s ease;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.logo {
font-size: 2.5rem;
font-weight: bold;
animation: logoPulse 3s infinite;
display: inline-block;
}
@keyframes logoPulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.85; }
100% { transform: scale(1); opacity: 1; }
}
nav {
margin-top: 1rem;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 2rem;
padding: 0;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #c8e6c9;
}
.btn.green {
background-color: #4caf50;
color: white;
}
.btn.green:hover {
background-color: #388e3c;
transform: translateY(-2px);
}
.reveal {
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.85; }
100% { transform: scale(1); opacity: 1; }
}
</style>
</head>
<body>
<header>
<h1 class="logo">👋 Вітаю на моєму вебсайті! 💚</h1>
<nav>
<ul>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSe9wBYfVKreFVYkH0A1JgpRUE3m70szFCRCERtmLO4Bsy65eQ/viewform?usp=preview" target="_blank">✳️ Про мене ✳️</a></li>
<li><a href="#services">✳️ Info ✳️</a></li>
<li><a href="#contact">✳️ Контакти ✳️</a></li>
<li><a href="https://maxwinupdate.github.io/chess_max21/" target="_blank">✳️ Chess ✳️</a></li>
<li><a href="https://maxwinupdate.github.io/maxnt126_addons_v1/" target="_blank">✳️ Word + DeepState (Addons) ✳️</a></li>
<li><a href="https://t.me/MaxNT_Live" target="_blank">✳️ Telegram | LIVE ✳️</a></li>
<li><span>✳️ Classroom (в розробці) ✳️</span></li>
</ul>
</nav>
</header>
<main>
✳️ Категорія потужності ✳️
<section id="power-widget" class="reveal" style="border: 3px solid #4caf50;">
<h2 style="text-align: center; animation: pulse 2s infinite;"><span style="font-size: 1.5em;">⚡</span> Потужність</h2>
<form id="power-form">
<div style="display: flex; flex-direction: column; gap: 0.5rem;">
<label><input type="radio" name="power" value="low"> Слабкість</label>
<label><input type="radio" name="power" value="medium"> Середність</label>
<label><input type="radio" name="power" value="elevated"> Повишеність</label>
<label><input type="radio" name="power" value="high"> Перевищеність</label>
<label><input type="radio" name="power" value="extreme"> Крайня перевищеність</label>
<label><input type="radio" name="power" value="extreme"> Ultra перевищеність</label>
<label><input type="radio" name="power" value="fire"> Вогонь</label>
</div>
<button class="btn green" type="button" onclick="activatePower()">Активувати</button>
</form>
<div id="confirmation" style="margin-top: 1rem; display: none; color: green; font-weight: bold;">
✅ Успішно активовано!
</div>
</section>
<section id="services" class="reveal">
<h2>✅ Наша команда </h2>
<ul>
<li> ✳️ Owner: Максим </li>
<li> ✳️ Адміністратор: Влад </li>
<li> ✳️ SUPPORT: Максим, Влад та інші... </li>
</ul>
<div class="button-group">
<button class="btn green">Замовити дизайн</button>
<button class="btn green">Розробити сайт</button>
<button class="btn green">SEO послуги</button>
</div>
</section>
<section id="contact" class="reveal">
<h2>Зв'язатися з нами</h2>
<p>Оберіть кнопку для зв'язку нижче:</p>
<div class="button-group">
<a href="https://t.me/MaxNT_Global21ua_bot" target="_blank" class="btn green">Telegram</a>
<button class="btn">-</button>
<button class="btn">-</button>
</div>
</section>
<section id="calendar" class="reveal" style="border: 3px solid #4caf50;">
<h2 style="text-align: center; animation: pulse 2s infinite;"><span style="font-size: 1.5em;">📅</span> Робочий календар</h2>
<h2>✳️ Робочий календар ✳️</h2>
<iframe src="https://calendar.google.com/calendar/embed?src=uk.ukrainian%23holiday%40group.v.calendar.google.com&ctz=Europe%2FKiev" style="border: 0" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
</section>
<section>
<h2> ✳️ Інші доповнення ✳️ </h2>
<div class="button-group">
<a href="add1.html" target="_blank" class="btn green">Add-Ons</a>
<button class="btn">-</button>
<div class="button-group">
<a href="word.html" target="_blank" class="btn green"> Word (web) </a>
</div>
<div class="button-group">
<a href="alg.html" target="_blank" class="btn green"> Алгоритми </a>
</div>
<div class="button-group">
<a href="https://maxnt2017.github.io/ua_web_maxnt123_web/index.html" target="_blank" class="btn green">⛔ Важливо! ⛔</a>
<button class="btn">-</button>
</div>
</section>
<section id="alert-map" class="reveal" style="border: 3px solid #4caf50;">
<h2 style="text-align: center; animation: pulse 2s infinite;"><span style="font-size: 1.5em;">🚨</span> Карта повітряних тривог</h2>
<h2> ⛔ Карта повітряних тривог України ⛔</h2>
<iframe src="https://alerts.in.ua" style="border: 0" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
</section>
</main>
<footer>
<p>© 2017-2025 MaxNT Official. Всі права захищено.</p>
</footer>
<script>
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
reveals.forEach(el => observer.observe(el));
</script>
<script>
function activatePower() {
const selected = document.querySelector('input[name="power"]:checked');
if (selected) {
document.getElementById('confirmation').style.display = 'block';
}
}
</script>
<audio id="success-sound" src="https://www.myinstants.com/media/sounds/notification-sound.mp3" preload="auto"></audio>
<script>
function activatePower() {
const selected = document.querySelector('input[name="power"]:checked');
if (selected) {
document.getElementById('confirmation').style.display = 'block';
const audio = document.getElementById('success-sound');
if (audio) audio.play();
}
}
</script>
</body>
</html>