-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.php
More file actions
executable file
·58 lines (38 loc) · 1.23 KB
/
loading.php
File metadata and controls
executable file
·58 lines (38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head><meta charset='UTF-8'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").show();
});
var timeLeft, id;
function startCountDown()
{
timeLeft = 5;
id = setInterval(countDown, 500);
}
function countDown()
{
timeLeft -= 1;
//Update the text which states how much time is remaining until the
//user is redirected here..
if(timeLeft==0)
{
$("p").hide();
}
}
</script>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</head>
<body>
<p><i class="glyphicon glyphicon-refresh w3-spin w3-jumbo"></i></p>
</body>
</html>