forked from born2net/BackSteroids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loading.html
36 lines (31 loc) · 800 Bytes
/
loading.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
<!--
If this file is present, it is shown automatically when a new steroids.views.WebView is pushed to the layer stack.
Once the new WebView has finished loading, the loading.html view will be hidden with a fast fade animation.
Currently, loading.html is supported by iOS only.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Loading...</title>
<link rel="stylesheet" href="/components/supersonic/css/supersonic.css" />
<style>
body, html {
height:100%;
}
.loading-box {
height:100%;
display: -webkit-box;
-webkit-box-orient:vertical;
-webkit-box-pack: center;
-webkit-box-align: center;
}
.super-loading-c {
font-size:50px;
}
</style>
</head>
<body class="loading-box content">
<i class="super-loading-c"></i>
</body>
</html>