-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (38 loc) · 1.03 KB
/
index.html
File metadata and controls
45 lines (38 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Header Shrink</title>
<link rel="stylesheet" type="text/css" href="header-shrink.css" />
<style type="text/css">
body {
font-family: 'Helvetica', sans-serif;
}
.header-shrink {
height: 140px;
background: #f3efe0;
text-align: center;
}
.header-shrink-active {
height: 80px;
background: #1ECD97;
}
.my-section {
height: 100em;
}
</style>
</head>
<body>
<header class="header-shrink header-shrink-default">
<h1>Header Shrink</h1>
</header>
<section class="my-section"></section>
<script src="bower_components/classie/classie.js"></script>
<script src="header-shrink.js"></script>
<script>
headerShrink('.header-shrink', 'header-shrink-active' );
</script>
</body>
</html>