-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiple.index.template.html
92 lines (91 loc) · 2.2 KB
/
multiple.index.template.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="<%= htmlWebpackPlugin.options.appConfig.description %>"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title><%= htmlWebpackPlugin.options.title %></title>
<style>
* {
margin: 0;
padding: 0;
}
.q-spinner-html {
vertical-align: middle;
}
.q-spinner-mat-html {
animation: q-spin 2s linear infinite;
transform-origin: center center;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
color: #3b4170;
}
.q-spinner-mat-html .path {
stroke-dasharray: 1, 200 /* rtl:ignore */;
stroke-dashoffset: 0 /* rtl:ignore */;
animation: q-mat-dash 1.5s ease-in-out infinite;
}
@keyframes q-spin {
0% {
transform: rotate3d(0, 0, 1, 0deg) /* rtl:ignore */;
}
25% {
transform: rotate3d(0, 0, 1, 90deg) /* rtl:ignore */;
}
50% {
transform: rotate3d(0, 0, 1, 180deg) /* rtl:ignore */;
}
75% {
transform: rotate3d(0, 0, 1, 270deg) /* rtl:ignore */;
}
100% {
transform: rotate3d(0, 0, 1, 359deg) /* rtl:ignore */;
}
}
@keyframes q-mat-dash {
0% {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -35px;
}
100% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -124px;
}
}
</style>
</head>
<body>
<div id="app">
<svg
class="q-spinner-html q-spinner-mat-html"
width="68"
height="68"
viewBox="25 25 50 50"
>
<circle
class="path"
cx="50"
cy="50"
r="20"
fill="none"
stroke="currentColor"
stroke-width="5"
stroke-miterlimit="10"
></circle>
</svg>
</div>
</body>
</html>