This repository was archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.23 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>home.hunt</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/flat-ui.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="wrapper">
<div id="splashscreen">
<img src="img/home-logo.png" alt="home.hunt" />
<div id="brand"><h1>home.hunt</h1></div>
<div id="spin"></div>
</div>
</div>
<script src="js/zepto.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/spin.js/1.2.7/spin.min.js"></script>
<script src="js/jquery.spin.js"></script>
<script src="js/homehunt.js"></script>
<script type="text/javascript">
var redirectHome = function () {
window.location.href = "loggedout_home.html";
};
$(document).ready(function () {
$("#spin").spin();
setTimeout(function () {
$("body").on('click', redirectHome);
redirectHome();
}, 3000);
});
</script>
</body>
</html>