-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (121 loc) · 6.56 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="swiper\swiper-5.3.8\swiper-5.3.8\package\css\swiper.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="brend-selector/brend-selector.css">
<link rel="stylesheet" href="brend-selector-header.css">
<!--<link rel="stylesheet" href="button-brend/button-brend.css">-->
<link rel="stylesheet" href="button-icon/button-icon.css">
<link rel="stylesheet" href="button-icon/--background/button-icon--background.css">
<!--<link rel="stylesheet" href="button-brend/--background/button-brend--background.css">-->
<link rel="stylesheet" href="read-more/read-more.css">
<link rel="stylesheet" href="fade.css">
<title>Блок 1.5: JavaScript в браузере</title>
</head>
<body class="brend-selector">
<header class="brend-selector-header">
<h1 class="brend-selector-header__heading">
Ремонт техники различных брендов
</h1>
</header>
<main>
<nav class="swiper">
<div class="swiper-container">
<div class="fade"></div>
<div class="brend-stack brend-stack--shrinked swiper-wrapper">
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Lenovo.svg" alt="Lenovo" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Samsung.svg" alt="Samsung" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Apple.svg" alt="Apple" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Viewsonic.svg" alt="Viewsonic" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Bosch.svg" alt="Bosch" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/HP.svg" alt="HP" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Acer.svg" alt="Acer" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Sony.svg" alt="Sony" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Lenovo.svg" alt="Lenovo" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Samsung.svg" alt="Samsung" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
<div class="swiper-slide brend-stack__brend">
<label class="brend-stack__label">
<img src="img/Apple.svg" alt="Apple" class="brend-stack__logo">
<button class="brend-stack__button button-icon button-icon--background--go">
</button>
</label>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<button class="brend-selector__more more" name="more">
<img src="read-more/img/expand.svg" alt="expand" class="more__image more__image--expand">
<span class="more__text more__text--expand">
Показать все
</span>
</button>
</div>
</nav>
</main>
<script src="swiper\swiper-5.3.8\swiper-5.3.8\package\js\swiper.min.js"></script>
<script src="brend-selector/brend-selector.js"></script>
</body>
</html>