-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.06 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
47
<!DOCTYPE html>
<html lang="en">
<head>
<title>SRF Framework</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#srf-loader::before {
animation: 1.5s linear infinite spinner;
animation-play-state: inherit;
border: solid 5px #33ccff;
border-bottom-color: white;
border-radius: 50%;
content: "";
height: 64px;
width: 64px;
position: absolute;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
will-change: transform
}
@keyframes spinner {
0% {
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
</style>
</head>
<body>
<div id="srf-alerts"></div>
<main id="srf-app">
<div id="srf-loader"></div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./srf.js"></script>
<script src="./app.js"></script>
</body>
</html>