-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroute.html
106 lines (84 loc) · 4.79 KB
/
route.html
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
<!DOCTYPE html>
<html lang="ru" xmlns:og="http://ogp.me/ns#">
<head>
<title>Мой Омск</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/route.css">
<link rel="stylesheet" href="main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="assets/images/logo-favicon.ico">
<link rel="icon" type="image/x-icon" href="assets/images/logo-favicon.png">
<meta name="keywords" content="Куда сходить в омске, омск, карта омска, omsk"/>
<meta name="robots" content="index,follow"/>
<meta name="theme-color" content="#00000">
<meta name="description"
content="Список классных мест омска. Покажем куда сегодня сходить,
где поесть, погулять, развлечься или потанцевать в Омске.
Не важно в какой компании, с детьми, семьёй, друзьями или девушкой">
<meta property="og:title" content="Куда сегодня сходить в Омске?"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://my-omsk.ru/index.html"/>
<meta property="og:site_name" content="Твой список мест Омска"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta
property="og:description"
content="Список классных мест омска. Покажем куда сегодня сходить, где поесть, погулять, развлечься или потанцевать в Омске.
Не важно в какой компании, с детьми, семьёй, друзьями или девушкой ^^"
/>
</head>
<body>
<header>
<a href="index.php">
<img class="header-logo" src='assets/images/logo.svg' alt='Логотип My-Omsk ✨' aria-label="Link to main page" aria-hidden="true">
</a>
</header>
<div class="routes_wrapper">
<div class="route-block" id="place1">
<div class="route-block__number">1</div>
<div id="title1" class="route-block__title">Памятник влюблённым</div>
<img id="image1" class="route-block__image" src="content/cafe-mesto-pro-testo.png" alt="Картинка" loading="lazy">
<div id="button1" class="route-block__button">
<a class="fill-container color-white" href="terr-coffe.html">Пойти</a>
</div>
</div>
<div class="route-block" id="place21">
<div class="route-block__number">1</div>
<div id="title21" class="route-block__title">Памятник влюблённым</div>
<img id="image21" class="route-block__image" src="content/cafe-mesto-pro-testo.png" alt="Картинка" loading="lazy">
<div id="button21" class="route-block__button">
<a class="fill-container color-white" href="terr-coffe.html">Пойти</a>
</div>
</div>
<div class="route-block" id="place2">
<div class="route-block__number">1</div>
<div id="title2" class="route-block__title">Памятник влюблённым</div>
<img id="image2" class="route-block__image" src="content/cafe-mesto-pro-testo.png" alt="Картинка" loading="lazy">
<a class="route-block__link" href="terr-coffe.html">
<div id="button2" class="route-block__button">Пойти</div>
</a>
</div>
</div>
<script>
var allButtons = document.querySelectorAll('div[class=route-block]');
console.log("Found", allButtons.length, "div which class starts with “button”.");
for (var i = 0; i < allButtons.length; i++) {
allButtons[i].addEventListener('click', function RouteCliker(event) {
let id = event.currentTarget.id.replace('place', '');
console.log(id);
let block = document.getElementById('place' + id);
block.classList.toggle('open');
let image = document.getElementById('image' + id);
image.classList.toggle('open');
let title = document.getElementById('title' + id);
title.classList.toggle('open');
let button = document.getElementById('button' + id);
button.classList.toggle('open');
console.log('GREAT');
})};
</script>
</body>
</html>