-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow_control_selector.html
More file actions
84 lines (71 loc) · 3.08 KB
/
flow_control_selector.html
File metadata and controls
84 lines (71 loc) · 3.08 KB
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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Výběr Škrtících Ventilů SMC</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/kq2.css">
</head>
<body>
<header>
<h1>Engineering Toolbox</h1>
<nav>
<a href="index.html">Domů</a>
<a href="airflow.html">Airflow</a>
<a href="pressure_loss.html">Tlaková ztráta</a>
<a href="cylinders.html">Válce</a>
<a href="air_consumption.html">Spotřeba vzduchu</a>
<a href="converter.html">Převodník</a>
<a href="simulator.html">Pneumatický Simulátor</a>
<a href="kq2_selector.html">Výběr Šroubení KQ2</a>
<a href="flow_control_selector.html" class="active">Výběr Škrtících Ventilů</a>
</nav>
</header>
<main>
<div class="selector-container">
<h2>Výběr Škrtících Ventilů SMC (Řada AS)</h2>
<!-- Filter Panel -->
<div class="filter-panel">
<!-- Shape Filter -->
<div class="filter-section">
<h3>1. Vyberte Typ</h3>
<div id="shape-filters" class="shape-filters">
<!-- Javascript will populate buttons here -->
</div>
</div>
<!-- Other Filters -->
<div class="filter-section">
<h3>2. Specifikace</h3>
<div class="dropdown-filters">
<div class="filter-group">
<label for="filter-od">Vnější Průměr Hadice</label>
<select id="filter-od">
<option value="all">Všechny průměry</option>
<!-- JS populated -->
</select>
</div>
<div class="filter-group">
<label for="filter-thread">Typ Závitu</label>
<select id="filter-thread">
<option value="all">Všechny závity</option>
<!-- JS populated -->
</select>
</div>
<div class="filter-group" style="justify-content: flex-end;">
<button id="btn-reset"
style="padding: 8px 16px; background-color: #666; color: white; border: none; border-radius: 4px; cursor: pointer;">Resetovat
Filtry</button>
</div>
</div>
</div>
</div>
<!-- Results Grid -->
<div id="results-count" style="margin-bottom: 5px; font-weight: bold; color: #555;"></div>
<div id="results-grid" class="results-grid">
<!-- JS populated -->
</div>
</div>
</main>
<script type="module" src="js/flow_control_selector.js"></script>
</body>
</html>