cg-select/index.html
2022-11-11 17:50:55 +03:00

60 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cg-Select</title>
<link href="./src/style/main.scss" rel="stylesheet" />
</head>
<body>
<div class="container">
<header class="header">
<h1>CG-SELECT</h1>
<img src="src/images/logoCG.jpg" alt="#" class="header__logo" />
</header>
</div>
<div class="container content">
<div class="example-select">
<form method="get" class="form">
<div>
<h2 class="example-select_title">Дефолтный селект</h2>
<button class="cg-dropdown cg-dropdown_one"></button>
</div>
<input type="submit" value="Отправить!" class="example-select_submit" />
</form>
</div>
<div class="example-select">
<h1 class="example-select_title">Селект с данными с URL</h1>
<button class="cg-dropdown cg-dropdown_three"></button>
</div>
<div class="example-select">
<h1 class="example-select_title">Категории</h1>
<button class="cg-dropdown cg-dropdown_categories"></button>
</div>
<div class="example-select">
<h1 class="example-select_title">Управление с помошью кнопок</h1>
<div style="margin-bottom: 15px">
<button class="button__open example-select_submit">Open</button>
<button class="button__close example-select_submit">Close</button>
</div>
<button class="cg-dropdown cg-dropdown_usedBtn"></button>
</div>
<div class="example-select">
<h1 class="example-select_title">Функция disabled</h1>
<input type="checkbox" name="chbx" id="checkboxDisable" style="margin-bottom: 16px" />
<label for="checkboxDisable">Вы согласны на обработку данных</label>
<button class="cg-dropdown cg-dropdown_checkboxDisable"></button>
</div>
</div>
</body>
<script type="module" src="/src/index.js"></script>
</html>