-
Notifications
You must be signed in to change notification settings - Fork 0
/
productsList.html
95 lines (72 loc) · 2.88 KB
/
productsList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="./css/productList.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="loader-container" id="loader-container">
<div class="loader"></div>
</div>
<div id="products-container">
<div id="left-sidebar">
<div class="text-cat" id="category-detail">
Clothing / Women's / <span>Outerwear</span>
</div>
<div id="filter-sort-wrapper">
<div id="filter-clickon">
<img src="./images/icon-filter.jpg" alt="filters icon" title="filters icon" />
Filters Results
</div>
<!-- <div id="sort-clickon">
<img src="./images/icon-sort.jpg" alt="sort products icon" title="sort products icon" />
Sort Products
</div> -->
</div>
<div id="categories-wrapper">
<h3>Filters
<span id="filters-close">X</span>
</h3>
<hr />
<h4>Price Range</h4>
<div class="price-range">
<div>
<label>Min</label>
<input type="number" id="minPrice" value="0" min="0" onchange="minPriceChanged(this)" />
</div>
<div>
<label>Max</label>
<input type="number" id="maxPrice" value="1" min="1" onchange="maxPriceChanged(this)" />
</div>
</div>
<hr />
<h4>Categories</h4>
<div id="categories">
</div>
</div>
</div>
<div id="main">
<div id="result-sort">
<div id="total-result"></div>
<div class="sort-select">
<select name="filter" id="filter" onchange="sorted(this)">
<option value="">Sort by Price</option>
<option value="asc">Low to High</option>
<option value="desc">High to Low</option>
</select>
</div>
</div>
<div id="no-product-found">No one product found with these Filters</div>
<div id="productsList"></div>
<div id="load-more">
<span>Load More</span>
</div>
</div>
</div>
</div>
</body>
<script src="productsList.js"></script>
</html>