forked from arjaneising/tickback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.33 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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>jQuery TickBack`</title>
<meta charset='utf-8'>
<meta content='IE=edge' http-equiv='X-UA-Compatible'>
<link href='./styles/screen.css' media='screen,projection' rel='stylesheet'>
</head>
<body>
<h1>jQuery TickBack`</h1>
<p>A jQuery plugin to animate the filtering of a list.</p>
<p>
<strong>
<a href='https://github.com/arjaneising/tickback'>See Github Repo…</a>
</strong>
</p>
<h2>Filters</h2>
<div class='filters'>
<a data-filter='foo' href='#'>Foo <small>Styled bold</small></a>
<a data-filter='bar' href='#'>Bar <small>Styled italic</small></a>
</div>
<ul>
<li class='foo bar'>
Z
</li>
<li class='bar'>
B
</li>
<li>
K
</li>
<li class='foo bar'>
D
</li>
<li class='bar'>
W
</li>
<li class='foo'>
F
</li>
<li class='bar'>
G
</li>
<li class='foo'>
H
</li>
<li class='foo'>
I
</li>
<li>
J
</li>
</ul>
<script src='scripts/jquery.js'></script>
<script src='scripts/jquery.transit.min.js'></script>
<script src='scripts/jquery.tickback.js'></script>
<script src='scripts/demo.js'></script>
</body>
</html>