forked from itchief/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (64 loc) · 2.41 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom select</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
}
.container {
max-width: 250px;
margin-left: auto;
margin-right: auto;
}
</style>
<!-- Подключаем CSS файл CustomSelect -->
<link rel="stylesheet" href="custom-select.css">
<!-- Подключаем JavaScript файл CustomSelect -->
<script defer src="custom-select.js"></script>
<!-- JS-код в котором инициализируем экземпляр CustomSelect для #select-1 -->
<script>
document.addEventListener('DOMContentLoaded', () => {
new CustomSelect('#select-1', {
name: 'car',
targetValue: 'ford',
options: [
['volkswagen', 'Volkswagen'],
['ford', 'Ford'],
['toyota', 'Toyota'],
['nissan', 'Nissan']
],
onSelected(select, option) {
// выбранное значение
console.log(`Выбранное значение: ${select.value}`);
// индекс выбранной опции
console.log(`Индекс выбранной опции: ${select.selectedIndex}`);
// выбранный текст опции
const text = option ? option.textContent : '';
console.log(`Выбранный текст опции: ${text}`);
},
});
document.querySelector('.select').addEventListener('select.change', (e) => {
const btn = e.target.querySelector('.select__toggle');
// выбранное значение
console.log(`Выбранное значение: ${btn.value}`);
// индекс выбранной опции
console.log(`Индекс выбранной опции: ${btn.dataset.index}`);
// выбранный текст опции
const selected = e.target.querySelector('.select__option_selected');
const text = selected ? selected.textContent : '';
console.log(`Выбранный текст опции: ${text}`);
});
})
</script>
</head>
<body>
<div class="container">
<!-- Кастомный селект -->
<div id="select-1"></div>
</div>
</body>
</html>