-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash.html
34 lines (30 loc) · 1.26 KB
/
splash.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
<!DOCTYPE html>
<html>
<head>
<title>AstroShelf v2.0</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="splash/css/splash.css"/>
<link rel="stylesheet" type="text/css" href="splash/css/main.css"/>
<link rel="stylesheet" type="text/css" href="splash/css/Aristo.css"/>
<script src="splash/js/jquery.min.js" type="text/javascript"></script>
<script src="splash/js/jquery-ui.min.js" type="text/javascript"></script>
<script src="splash/js/jquery.ui.position.js" type="text/javascript"></script>
<script src="splash/js/dialog.js" type="text/javascript"></script>
<script type="text/javascript">
$(window).resize(function() {
$("#splashDialog").dialog("option", "position", {my: "center", at: "center", of: window});
});
jQuery(document).ready(function($){
$("#splashDialog").splashDialog();
});
</script>
</head>
<body>
<div id="imageContainer">
<img id="splashTitleBar" src="splash/css/images/splash_title_bar.png"></img>
<img id="splashLogo" src="splash/css/images/splash_logo.png"></img>
</div>
<div id="splashDialog"></div>
</body>
</html>