-
Notifications
You must be signed in to change notification settings - Fork 55
/
fixed-nav.html
145 lines (119 loc) · 2.61 KB
/
fixed-nav.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gumshoe</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
html {
overflow-y: auto;
scroll-behavior: smooth;
}
/**
* Offset fixed header
*/
body {
padding-top: 150px;
}
/* Sets body width */
.container {
max-width: 40em;
width: 88%;
margin-left: auto;
margin-right: auto;
}
/**
* Create fixed header
*/
.fixed-header {
position: fixed;
top: 0;
left: 0;
background-color: #f7f7f7;
width: 100%;
}
/**
* Display lists on a single line.
*/
.list-inline {
list-style: none;
margin-left: -0.5em;
margin-right: -0.5em;
padding: 0;
}
.list-inline li {
display: inline-block;
margin-left: 0.5em;
margin-right: 0.5em;
padding: 0.25em 0.5em;
}
#my-awesome-nav li.active {
background-color: black;
}
#my-awesome-nav li.active a {
color: white;
}
/**
* Sections
*/
.section {
color: #ffffff;
height: 95vh;
margin: 0;
padding: 2em;
}
#eenie {
background-color: #0088cc;
}
#meenie {
background-color: rebeccapurple;
}
#miney {
background-color: #272727;
}
#mo {
background-color: #f42b37;
}
</style>
</head>
<body id="top">
<nav id="my-header" class="fixed-header">
<div class="container">
<h1>Gumshoe</h1>
<p><a href="https://github.com/cferdinandi/gumshoe">GitHub</a></p>
<ul id="my-awesome-nav" class="list-inline">
<li><a data-scroll href="#eenie">Eenie</a></li>
<li><a data-scroll href="#meenie">Meenie</a></li>
<li><a data-scroll href="#miney">Miney</a></li>
<li><a data-scroll href="#mo">Mo</a></li>
</ul>
</div>
</nav>
<main class="container">
<div class="section" id="eenie">
Eenie...
</div>
<div class="section" id="meenie">
Meenie...
</div>
<div class="section" id="miney">
Miney...
</div>
<div class="section" id="mo">
Mo...
</div>
<p><a data-scroll href="#top">Back to the top</a></p>
</main>
<!-- Javascript -->
<script src="dist/gumshoe.js"></script>
<script>
var spy = new Gumshoe('#my-awesome-nav a', {
offset: function () {
var header = document.querySelector('#my-header');
var computed = window.getComputedStyle(header);
return parseFloat(computed.height) + parseFloat(computed.marginTop) + parseFloat(computed.marginBottom) + parseFloat(computed.paddingTop) + parseFloat(computed.paddingBottom);
}
});
</script>
</body>
</html>