-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (122 loc) · 6.55 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Онлайн Конфигуратор</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header header__container">
<h1 class="header__title">Онлайн конфигуратор</h1>
</header>
<main class="main main__container">
<h2 class="main__title">задайте параметры стекла</h2>
<div class="calculator">
<div class="calculator__item item">
<label class="item__label" for="length">Укажите длину</label>
<input class="item__input" id="length" type="number" placeholder="Длина | мм" required>
</div>
<div class="popup">
<img class="popup__img" src="img/popup_icon.svg" alt="">
<span class="popup__text">Укажите размеры</span>
</div>
<div class="calculator__item item">
<label class="item__label" for="width">Укажите ширину</label>
<input class="item__input" id="width" type="number" placeholder="Ширина | мм">
</div>
<div class="calculator__item item item_big">
<span class="item__label label__item">Форма стекла  <button class="hint hint_form"><img class="hint__icon" src="img/hint_label.svg" alt="hint"></button></span>
<div class="hint__body">
<h3 class="hint__title">ПРИ ВЫБОРЕ ФОРМЫ КРУГ ИЛИ ОВАЛ:</h3>
<ul class="hint__list">
<li class="hint__item">Длина и Ширина у круглой формы совпадают </li>
<li class="hint__item">Длина и Ширина у овальной формы различаются </li>
</ul>
</div>
<div class="item__select select">
<div class="select__header">
<div class="select__icon">
<img src="img/rectangle.svg" alt="rectangle">
</div>
<span class="select__text form">Прямоугольник</span>
<button class="select__button button">
<img class="button__image" src="img/arrow_bottom.svg" alt="arrow_bottom">
</button>
</div>
<ul class="select__options">
<li class="select__option option">
<div class="option__icon">
<img src="img/rectangle.svg" alt="rectangle">
</div>
Прямоугольник
</li>
<li class="select__option option">
<div class="option__icon">
<img src="img/circle.svg" alt="circle">
</div>
Круг (овал)
</li>
</ul>
</div>
</div>
<div class="calculator__item item item_big">
<span class="item__label">Вид обработки   <button class="hint hint_processing"><img class="hint__icon" src="img/hint_label.svg" alt="hint"></button></span>
<div class="hint__body hint_big">
<h3 class="hint__title">ПРИ ВЫБОРЕ МЕТОДА ОБРАБОТКИ КРОМКИ:</h3>
<ul class="hint__list hint__list_big">
<li class="hint__item">Без обработки — голый рез, можно порезать руки</li>
<li class="hint__item">Шлифовка – сняты фаски, матовый торец стекла</li>
<li class="hint__item">Полировка – сняты фаски, глянцевый торец стекла</li>
</ul>
<a class="hint__link" href="#">Подробнее об услуге</a>
</div>
<div class="item__select select">
<div class="select__header">
<div class="select__icon">
<img src="img/untreated.svg" alt="rectangle">
</div>
<span class="select__text processing">Без обработки</span>
<button class="select__button button">
<img class="button__image" src="img/arrow_bottom.svg" alt="arrow_bottom">
</button>
</div>
<ul class="select__options">
<li class="select__option option">
<div class="option__icon">
<img src="img/untreated.svg" alt="rectangle">
</div>
Без обработки
</li>
<li class="select__option option">
<div class="option__icon">
<img src="img/grinding.svg" alt="circle">
</div>
С шлифовкой
</li>
<li class="select__option option">
<div class="option__icon">
<img src="img/Polishing.svg" alt="circle">
</div>
С полировкой
</li>
</ul>
</div>
</div>
<div class="calculator__item item">
<label class="item__label" for="counter">Количество</label>
<div class="item__counter">
<button class="item__button item__button_plus">+</button>
<input value="0" class="item__input item__input_counter" id="counter" type="number" maxlength="4">
<button class="item__button item__button_minus">-</button>
</div>
</div>
<div class="calculator__item item">
<span class="item__label">Сумма</span>
<span class="item__result">0.00</span>
</div>
<span class="calculator__reset"></span>
</div>
</main>
<script src="script.js"></script>
</body>
</html>