forked from COVAIL/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.html
69 lines (65 loc) · 1.17 KB
/
loading.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
<html>
<head>
<style>
body{
padding:1em;
color:#777;
text-align:center;
width:80%;
margin:0 auto
}
.loader{
margin:0 0 2em;
height:100px;
width:20%;
text-align:center;
padding:1em;
margin:0 auto 1em;
display:inline-block;
vertical-align:top
}
svg path{
fill:#ff6700
}
</style>
</head>
<body>
<div class="loader">
<svg
height="80px"
style="enable-background:new 0 0 50 50"
version="1.1"
viewBox="0 0 50 50"
width="80px" x="0px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
y="0px"
>
<path
d="M43.935,
25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,
0-18.683,8.365-18.683,
18.683h4.068c0-8.071,
6.543-14.615,
14.615-14.615c8.072,
0,
14.615,
6.543,14.615,
14.615H43.935z"
fill="#000"
>
<animateTransform
attributeName="transform"
attributeType="xml"
dur="0.6s"
from="0 25 25"
repeatCount="indefinite"
to="360 25 25"
type="rotate">
</animateTransform>
</path>
</svg>
</div>
</body>
</html>