-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (105 loc) · 3.21 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Braindeer Games</title>
<meta name="description" content="Braindeer Games Studios LLC">
<meta name="author" content="Alexander Damrath">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/hover.css">
</head>
<body>
<script src="js/scripts.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
<div class="headerBar">
<a href="#" id="homeLink">
<img id="logo-text" src="images/logo_text.png"/>
<img id="logo" src="images/logo.png"/>
</a>
<div class="navLinks">
<a class="nav-link hvr-sweep-to-left" id="gamesLink" href="#" >GAMES</a>
<a class="nav-link hvr-sweep-to-left" id="blogLink" href="#" >BLOG</a>
<a class="nav-link hvr-sweep-to-left" id="aboutLink" href="#" >ABOUT</a>
</div>
</div>
<img id="background" src="images/wood.jpeg"/>
<div class="pages">
<div class="page" id="home">
<div class="construction">
<h1> CURRENTLY UNDER CONSTRUCTION </h1>
<h2> CHECK BACK LATER</h2>
</div>
</div>
<div class="page" id="games">
<div class="game">
<img class="gameImg" src="images/screenshot.jpg"/>
</div>
<div class="construction">
<h1> CURRENTLY UNDER CONSTRUCTION </h1>
<h2> CHECK BACK LATER</h2>
</div>
</div>
<div class="page" id="blog">
<div class="construction">
<h1> CURRENTLY UNDER CONSTRUCTION </h1>
<h2> CHECK BACK LATER</h2>
</div>
</div>
<div class="page" id="about">
<div class="construction">
<h1> CURRENTLY UNDER CONSTRUCTION </h1>
<h2> CHECK BACK LATER</h2>
</div>
</div>
</div>
<div class="footerBar">
<p class="copyright">© <span id="year"></span> Braindeer Games LLC</p>
<div class="social">
<a href="https://braindeer-games.itch.io/" target="_blank">
<img class="social-link" src="images/itch.png"/>
</a>
<a href="https://twitter.com/BraindeerGames" target="_blank">
<img class="social-link" src="images/twitter.png"/>
</a>
<a href="https://www.facebook.com/BraindeerGames" target="_blank">
<img class="social-link" src="images/facebook.png"/>
</a>
</div>
</div>
<script type="text/javascript">
var currentYear = (new Date()).getFullYear();
var slideAmt = 0;
$("#year").text(currentYear);
$( "#homeLink" ).click(function() {
$( ".pages" ).animate({
left: "0vw",
}, 1000, function() {
// Animation complete.
});
});
$( "#gamesLink" ).click(function() {
$( ".pages" ).animate({
left: "-100vw",
}, 1000, function() {
// Animation complete.
});
});
$( "#blogLink" ).click(function() {
$( ".pages" ).animate({
left: "-200vw",
}, 1000, function() {
// Animation complete.
});
});
$( "#aboutLink" ).click(function() {
$( ".pages" ).animate({
left: "-300vw",
}, 1000, function() {
// Animation complete.
});
});
</script>
</body>
</html>