-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-pause.html
79 lines (71 loc) · 2.47 KB
/
index-pause.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>
<meta name='viewport' content='initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width'>
<title>Landlistening</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:700,700i|Playfair+Display:900i|Zilla+Slab:400i,600i" rel="stylesheet">
<link rel="stylesheet" type="text/css" href='css/reset.css'>
<link rel="stylesheet" type="text/css" href='css/components.css'>
<link rel="stylesheet" type="text/css" href='css/base.css'>
<link rel="stylesheet" type="text/css" href='css/responsive.css'>
</head>
<body>
<nav>
<div class="menu bot-button hidden" aria-label="Mobile Menu"> <h2> Menu </h2></div>
<div class="nav side-button left" aria-label="About Sarah">
<h2> About Sarah </h2>
</div>
<div class="nav side-button right" aria-label="Past Work"><h2> Past Work </h2></div>
<div class="nav bot-button" aria-label="Contact"><h2> Contact </h2></div>
</nav>
<main>
<div id="left" class="gutter"></section>
<section id="pen">
<section id="landlistening" role="page" class="current-page">
Landlistening
<button role="transition" class="to-about"
data-to="page-2"
data-transition="horizontal">
</button>
</section>
<section id="about" role="page" class="hidden"> About </section>
<section id="examples" role="page" class="hidden"> Examples </section>
<section id="contact" role="page" class="hidden"> Contact </section>
</section>
<div id="right" class="gutter"></section>
</main>
<!-- <div id="page-1" role="page">
<h1>Page One</h1>
<button class="next"
role="transition"
data-to="page-2"
data-transition="horizontal">
NEXT PAGE
</button>
</div>
<div id="page-2" role="page">
<h1>Page Two</h1>
<button class="next"
role="transition"
data-to="page-3"
data-transition="horizontal-easing">
NEXT PAGE
</button>
</div>
<div id="page-3" role="page">
<h1>Page Three</h1>
<button class="next"
role="transition"
data-to="page-1"
data-transition="horizontal-fade">
NEXT PAGE
</button>
</div> -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script type="text/javascript">
window.module = {};
</script>
<script src="js/mobile.js" type="text/javascript"></script>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>