-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>MLoader</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="page-content">
<!-- Your page content here -->
</div>
<div class="loader ">
<div class="loader-inner loading">
<div class="loading-box">
<div class="circular-loader">
</div>
<div class="error-cross"></div>
<div class="loader-message">Loading your data...</div>
<div class="loader-result-control">
<button class="btn retry">Reply Again</button>
<button class="btn cancel">Cancel</button>
<button class="btn done">Done</button>
</div>
</div>
</div>
<div class="testing-controls">
<button class="btn success-test">Success Modal</button>
<button class="btn loading-test">Full Screen Loading</button>
<button class="btn error-test">Error Modal</button>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="js/mLoader.js"></script>
<script src="js/index.js"></script>
</body>
</html>