-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (80 loc) · 2.39 KB
/
Copy pathindex.html
File metadata and controls
93 lines (80 loc) · 2.39 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
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Index of scripts</title>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
</head>
<body>
<header class="header">
<h1 class="center">My great index..</h1>
</header>
<nav class="nav">
<div class="center">
<ul>
<li><a href="http://fourroses666.github.io">Home</a></li>
</ul>
</div>
<div class="clear"></div>
</nav>
<main class="main">
<section class="filters">
<div class="center">
<span class="filter active" data-filter="all">All</span>
<span class="filter" data-filter=".css">CSS</span>
<span class="filter" data-filter=".js">JS</span>
</div>
</section>
<section class="center items" id="filteren">
<div class="item css mix">
<a href="stuff/sticky/">
<h2>Sticky footer</h2>
<p>This footer will always stick to the bottom.</p>
</a>
</div>
<div class="item css js mix">
<a href="stuff/sticky-js/">
<h2>Sticky JS footer</h2>
<p>Responsive sticky footer. You can use a variable footer height.</p>
</a>
</div>
<div class="item js mix">
<a href="stuff/placeholder/">
<h2>Placeholder focus</h2>
<p>Input fields placeholder text gets invisible when clicking it.</p>
</a>
</div>
</section>
</main>
<footer class="footer">
<div class="center">
<ul class="links">
<li>© Copyright</li>
<li><a href="https://github.com/fourroses666" target="_blank">GitHub</a></li>
</ul>
<div class="clear"></div>
</div>
</footer>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/jquery.mixitup.min.js"></script>
<script>
$(function(){
$('#filteren').mixItUp({
animation: {
animateResizeContainer: false,
effects: 'fade'
}
});
});
$(function() {
$('.filter').click(function(){
$('.filters .filter').removeClass("active");
$(this).addClass('active');
});
});
</script>
</body>
</html>