-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
446 lines (387 loc) · 16.7 KB
/
about.html
File metadata and controls
446 lines (387 loc) · 16.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="about.title">About Me | Motorcycle Traveler</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<link rel="stylesheet" href="./assets/language-switcher.css">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f0f7ff;
color: #333;
line-height: 1.6;
padding: 15px;
max-width: 100%;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background: white;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 100%;
max-width: 500px;
}
header {
background: #e31837;
color: white;
text-align: center;
padding: 25px 15px;
position: relative;
}
.back-button {
position: absolute;
left: 15px;
top: 25px;
color: white;
font-size: 20px;
cursor: pointer;
text-decoration: none;
}
.logo {
font-size: 40px;
margin-bottom: 10px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
.subtitle {
font-size: 16px;
opacity: 0.9;
}
.content {
padding: 25px 20px;
}
.section {
margin-bottom: 30px;
}
.section-title {
font-size: 20px;
color: #e31837;
margin-bottom: 15px;
padding-bottom: 5px;
border-bottom: 2px solid #f0f0f0;
display: flex;
align-items: center;
}
.section-title i {
margin-right: 10px;
}
.section-content {
color: #555;
line-height: 1.6;
}
.section-content p {
margin-bottom: 15px;
}
.social-links {
display: flex;
justify-content: center;
gap: 15px;
margin: 25px 0;
}
.social-link {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: #e31837;
color: white;
font-size: 24px;
text-decoration: none;
transition: all 0.3s;
}
.social-link:hover {
transform: translateY(-5px);
background: #c0142d;
}
.social-link.youtube {
background: #FF0000;
}
.social-link.telegram {
background: #0088cc;
}
.social-link.instagram {
background: #E1306C;
}
#map {
height: 300px;
width: 100%;
border-radius: 10px;
margin: 20px 0;
z-index: 1;
}
.route-info {
background: #f8f9fa;
padding: 15px;
border-radius: 10px;
margin: 20px 0;
}
.route-title {
font-weight: 600;
color: #e31837;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.route-title i {
margin-right: 10px;
}
.route-list {
padding-left: 20px;
}
.route-list li {
margin-bottom: 8px;
position: relative;
}
.route-list li::before {
content: "•";
color: #e31837;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.current-location {
background: #fff4f4;
border-left: 4px solid #e31837;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
.future-plans {
background: #f0f9ff;
border-left: 4px solid #0088cc;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
.action-buttons {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 25px;
}
.action-button {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
background: #e31837;
color: white;
border-radius: 8px;
text-align: center;
font-weight: 600;
text-decoration: none;
transition: background 0.3s;
}
.action-button:hover {
background: #c0142d;
cursor: pointer;
}
.action-button i {
margin-right: 8px;
}
.secondary-button {
background: white;
color: #e31837;
border: 2px solid #e31837;
}
.secondary-button:hover {
background: #f8f8f8;
}
footer {
text-align: center;
padding: 20px;
background: #333;
color: white;
font-size: 14px;
border-radius: 0 0 15px 15px;
}
@media (max-width: 480px) {
h1 {
font-size: 22px;
}
.social-links {
gap: 10px;
}
.social-link {
width: 45px;
height: 45px;
font-size: 20px;
}
}
</style>
</head>
<body>
<!-- Language Switcher -->
<div class="language-switcher">
<button class="lang-btn" data-lang="ru" aria-label="Русский"></button>
<button class="lang-btn" data-lang="en" aria-label="English"></button>
<button class="lang-btn" data-lang="th" aria-label="ไทย"></button>
<button class="lang-btn" data-lang="vi" aria-label="Tiếng Việt"></button>
</div>
<div class="container">
<header>
<a href="emergency.html" class="back-button" aria-label="К экстренной странице">
<i class="fas fa-arrow-left"></i>
</a>
<div class="logo">
<i class="fas fa-motorcycle"></i>
</div>
<h1 data-i18n="about.header">About Me</h1>
<p class="subtitle" data-i18n="about.subtitle">Motorcycle Traveler Around the World</p>
</header>
<div class="content">
<div class="section">
<h2 class="section-title"><i class="fas fa-user"></i> <span data-i18n="about.who.title">Who Am I?</span></h2>
<div class="section-content">
<p data-i18n="about.who.intro">Hello! I am a travel blogger who decided to travel the world on my motorcycle. My journey started in Thailand, and now I am exploring the beauties of southern Russia.</p>
<p data-i18n="about.who.journey">In my travels, I shoot videos, share impressions and talk about the adventures that happen along the way. A motorcycle for me is not just transportation, it is a way to feel freedom and see the world without filters.</p>
</div>
<div class="social-links">
<a href="https://www.youtube.com/@kirill.zhivi.horosho" class="social-link youtube" target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://t.me/hehe_traps" class="social-link telegram" target="_blank">
<i class="fab fa-telegram"></i>
</a>
<a href="https://instagram.com/zhivi.horosho" class="social-link instagram" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div class="section">
<h2 class="section-title"><i class="fas fa-route"></i> <span data-i18n="about.route.title">My Route</span></h2>
<div class="section-content">
<p data-i18n="about.route.desc">My journey started in Thailand, from where I rode through Laos, China, Kazakhstan, and then through Russia to Krasnodar.</p>
<div id="map"></div>
<div class="route-info">
<div class="route-title"><i class="fas fa-map-marked-alt"></i> <span data-i18n="about.route.points">Main Route Points:</span></div>
<ul class="route-list">
<li data-i18n="about.route.thailand">Thailand - Bangkok (journey start)</li>
<li data-i18n="about.route.laos">Laos - Vientiane</li>
<li data-i18n="about.route.china">China - Kunming, Chengdu, Tibet, Xi'an</li>
<li data-i18n="about.route.kazakhstan">Kazakhstan - Almaty, Nur-Sultan</li>
<li data-i18n="about.route.russia">Russia - Yekaterinburg, Kazan, Moscow</li>
<li data-i18n="about.route.krasnodar">Krasnodar - current location</li>
</ul>
</div>
<div class="current-location">
<p><strong data-i18n="about.current.title">Currently located:</strong> <span data-i18n="about.current.location">Thailand</span></p>
<p data-i18n="about.current.desc">I am currently preparing for a trip through Vietnam on a Thai motorcycle</p>
</div>
<div class="future-plans">
<p><strong data-i18n="about.plans.title">Next I plan to:</strong> <span data-i18n="about.plans.desc">Travel to Georgia to continue my journey and discover the beauties of the Caucasus.</span></p>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title"><i class="fas fa-camera"></i> <span data-i18n="about.projects.title">My Projects</span></h2>
<div class="section-content">
<p data-i18n="about.projects.intro">In my blogs, I share not only travel impressions, but also practical tips for motorcyclists:</p>
<ul class="route-list">
<li data-i18n="about.projects.preparation">How to prepare a motorcycle for a long journey</li>
<li data-i18n="about.projects.borders">Features of crossing borders on a motorcycle</li>
<li data-i18n="about.projects.lifehacks">Life hacks for comfortable trips in different climatic conditions</li>
<li data-i18n="about.projects.gear">Reviews of motorcycle equipment and gear</li>
</ul>
</div>
</div>
<div class="action-buttons">
<a href="https://instagram.com/zhivi.horosho" class="action-button" target="_blank">
<i class="fab fa-instagram"></i> <span data-i18n="about.action.instagram">Follow on Instagram</span>
</a>
<a href="https://www.youtube.com/@kirill.zhivi.horosho" class="action-button secondary-button" target="_blank">
<i class="fab fa-youtube"></i> <span data-i18n="about.action.youtube">Watch on YouTube</span>
</a>
<a href="https://t.me/hehe_traps" class="action-button secondary-button" target="_blank">
<i class="fab fa-telegram"></i> <span data-i18n="about.action.telegram">Subscribe on Telegram</span>
</a>
</div>
</div>
<footer>
<p data-i18n="about.footer.follow">Follow my adventures on social media!</p>
<p data-i18n="about.footer.copyright">© 2026 Kirill Zhivi Horosho</p>
</footer>
</div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script>
// Инициализация карты
function initMap() {
const map = L.map('map').setView([40, 90], 3);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
// Точки маршрута
const routePoints = [
{lat: 13.7563, lng: 100.5018, name: "Бангкок, Таиланд"},
{lat: 17.9757, lng: 102.6331, name: "Вьентьян, Лаос"},
{lat: 24.8801, lng: 102.8329, name: "Куньмин, Китай"},
{lat: 30.5728, lng: 104.0668, name: "Чэнду, Китай"},
{lat: 34.3416, lng: 108.9398, name: "Сиань, Китай"},
{lat: 43.2220, lng: 76.8512, name: "Алма-Ата, Казахстан"},
{lat: 51.1282, lng: 71.4304, name: "Нур-Султан, Казахстан"},
{lat: 56.8389, lng: 60.6057, name: "Екатеринбург, Россия"},
{lat: 55.7964, lng: 49.1089, name: "Казань, Россия"},
{lat: 55.7558, lng: 37.6173, name: "Москва, Россия"},
{lat: 45.0355, lng: 38.9753, name: "Краснодар, Россия (текущее положение)"}
];
// Добавление маркера для каждой точки
routePoints.forEach((point, index) => {
const isCurrent = index === routePoints.length - 1;
const icon = L.icon({
iconUrl: isCurrent ? 'https://raw.githubusercontent.com/pointhi/leaflet-color-markers/master/img/marker-icon-2x-red.png' : 'https://raw.githubusercontent.com/pointhi/leaflet-color-markers/master/img/marker-icon-2x-blue.png',
shadowUrl: 'https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/images/marker-shadow.png',
iconSize: [25, 41],
iconAnchor: [12, 41],
popupAnchor: [1, -34],
shadowSize: [41, 41]
});
L.marker([point.lat, point.lng], {icon: icon})
.addTo(map)
.bindPopup(`<b>${point.name}</b>`);
});
// Добавление линии маршрута
const routeLine = L.polyline(
routePoints.map(point => [point.lat, point.lng]),
{color: '#e31837', weight: 3}
).addTo(map);
// Установка границ карты чтобы весь маршрут был виден
map.fitBounds(routeLine.getBounds());
}
// Инициализация карты после загрузки страницы
document.addEventListener('DOMContentLoaded', initMap);
// Анимация появления элементов при загрузке
document.addEventListener('DOMContentLoaded', function() {
const elements = document.querySelectorAll('.section, .social-link, .action-button');
elements.forEach((element, index) => {
element.style.opacity = '0';
element.style.transform = 'translateY(20px)';
element.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
setTimeout(() => {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}, 100 + (index * 100));
});
});
</script>
<script src="./assets/translations.js"></script>
<script src="./assets/language-switcher.js"></script>
</body>
</html>