-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.03 KB
/
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
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Spin Backdrop</title>
<link rel="shortcut icon" type="image/png" href="images/ic_small.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.css" />
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/spin.min.backdrop.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#btn").click(function() {
setSpinner(true);
setTimeout(function() {
setSpinner(false);
}, 3000);
});
});
</script>
</head>
<body id="body">
<center>
<button id="btn" type="submit" class="btn btn-success btn-lg" style="
font-size:18pt;margin-top: 300px;">Click Me</button>
</center>
</body>
</html>