This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 739
/
index.html
79 lines (61 loc) · 3.49 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
<!DOCTYPE html>
<html>
<head>
<title>MixItUp Demos</title>
</head>
<body>
<h1>MixItUp Demos</h1>
<p>The following collection of demos have been designed to demonstrate MixItUp's core functionality. They are maintained as part of the <a href="https://github.com/patrickkunka/mixitup/tree/v3/demos">MixItUp Github repository</a>, and can be viewed at <a href="http://patrickkunka.github.io/mixitup/demos">patrickkunka.github.io/mixitup/demos/</a>.</p>
<p>Each demo is intended to be as simple and instructive as possible and therefore intentionally avoids "magic" such as SASS, ES6, modules, or external dependencies that may require compilation in order to be usable in the browser. As such, you may run and edit these demos using any basic static file webserver, online or offline.</p>
<h2>Basic Functionality</h2>
<ul>
<li><a href="./basic/">Basic MixItUp Functionality</a></li>
<li><a href="./attribute-selectors/">Querying via Attribute Selectors</a></li>
<li><a href="./loading-animation/">Loading Animation</a></li>
<li><a href="./multiple-instances-global-control-scoping/">Multiple Instances with Global Control Scoping</a></li>
<li><a href="./multiple-instances-local-control-scoping/">Multiple Instances with Local Control Scoping</a></li>
</ul>
<h2>Filtering</h2>
<ul>
<li><a href="./toggle-filtering-or-logic/">Toggle Filtering with OR Logic</a></li>
<li><a href="./toggle-filtering-and-logic/">Toggle Filtering with AND Logic</a></li>
<li><a href="./filtering-by-url/">Filtering by URL</a></li>
<li><a href="./filtering-by-text-input/">Filtering by Text Input</a></li>
</ul>
<h2>Non-standard UI</h2>
<ul>
<li><a href="./select-dropdowns/">Select Dropdowns</a></li>
<li><a href="./radio-buttons/">Radio Buttons</a></li>
<li><a href="./checkboxes/">Checkboxes</a></li>
<li><a href="./checkboxes-with-reset-checkbox/">Checkboxes with Reset Checkbox</a></li>
<li><a href="./filtering-by-range/">Range Sliders</a></li>
</ul>
<h2>Sorting</h2>
<ul>
<li><a href="./sorting-by-default/">Sorting by Default</a></li>
<li><a href="./sorting-by-attribute/">Sorting by Attribute</a></li>
<li><a href="./sorting-by-multiple-attributes/">Sorting by Multiple Attributes</a></li>
</ul>
<h2>Insertion</h2>
<ul>
<li><a href="./insertion-non-target-elements/">Insertion with Non-target Elements</a></li>
</ul>
<h2>Removal</h2>
<ul>
<li><a href="./removal-by-reference/">Removal by Reference</a></li>
</ul>
<h2>Dataset</h2>
<ul>
<li><a href="./dataset-empty-container/">Dataset with an Empty Container</a></li>
<li><a href="./dataset-pre-rendered-targets/">Dataset with Pre-rendered Targets</a></li>
</ul>
<h2>Grids</h2>
<ul>
<li><a href="./grid-inline-block/">Inline-block Grid (HTML/CSS only)</a></li>
<li><a href="./grid-flex-box/">Flex-box Grid (HTML/CSS only)</a></li>
<li><a href="./grid-floats/">Float-based Grid (HTML/CSS only)</a></li>
<li><a href="./grid-flex-box-matching-heights/">Flex-box Grid with Matching Heights</a></li>
<li><a href="./grid-columns/">Columns Grid</a></li>
</ul>
</body>
</html>