-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (26 loc) · 811 Bytes
/
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
<!--
Author: Lina Baquero
Date: March 15, 2015
Description: Home screen, must be clicked to go to main menu
-->
<html>
<head>
<title>LibNav 0.1</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" href="css/standardize.css">
<link rel="stylesheet" href="css/index-grid.css">
<link rel="stylesheet" href="css/stylemap.css">
</head>
<body id="body2" class="body page-index clearfix" onclick="changeScreen();">
</body>
<script>
/*Change screen when the background is clicked*/
function changeScreen(){
window.location.href = 'origin.html';
}
//If user does not click after 5 seconds change screen to main menue
setTimeout(function(){
window.location = 'origin.html';
}, 5000);</script>
</html>