forked from sunhater/shCircleLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.shCircleLoader.css
100 lines (83 loc) · 2.31 KB
/
jquery.shCircleLoader.css
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
93
94
95
96
97
98
99
100
/*!
* SunHater Circle Loader v0.2 (2013-12-28)
* jQuery plugin
* Copyright (c) 2014 Pavel Tzonkov <[email protected]>
* Dual licensed under the MIT and GPL licenses.
* http://opensource.org/licenses/MIT
* http://www.gnu.org/licenses/gpl.html
*
* External css example, when using externalCss:true option
*/
/* Loader container */
.shcl {
position: relative;
width: 100px;
height: 100px;
margin: 0 auto;
}
/* Progress status */
.shcl > span {
font-family: Verdana, Tahoma, Arial, sans-serif;
font-size: 14px;
color: black;
}
/* Loader dots */
.shcl > div {
position: absolute;
visibility: hidden;
width: 10px;
height: 10px;
background: transparent;
box-shadow: 0 0 10px black;
-webkit-border-radius: 5px;
-webkit-animation-name: shcl_bounce;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: linear;
-moz-border-radius: 5px;
-moz-animation-name: shcl_bounce;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-moz-animation-direction: linear;
-o-border-radius: 5px;
-o-animation-name: shcl_bounce;
-o-animation-duration: 1s;
-o-animation-iteration-count: infinite;
-o-animation-direction: linear;
-ms-border-radius: 5px;
-ms-animation-name: shcl_bounce;
-ms-animation-duration: 1s;
-ms-animation-iteration-count: infinite;
-ms-animation-direction: linear;
border-radius: 5px;
animation-name: shcl_bounce;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: linear;
}
/* Animation keyframes */
@-webkit-keyframes shcl_bounce {
0% {-webkit-transform: scale(1);}
80% {-webkit-transform: scale(.3);}
100% {-webkit-transform: scale(1);}
}
@-moz-keyframes shcl_bounce {
0% {-moz-transform: scale(1);}
80% {-moz-transform: scale(.3);}
100% {-moz-transform: scale(1);}
}
@-o-keyframes shcl_bounce {
0% {-o-transform: scale(1);}
80% {-o-transform: scale(.3);}
100% {-o-transform: scale(1);}
}
@-ms-keyframes shcl_bounce {
0% {-ms-transform: scale(1);}
80% {-ms-transform: scale(.3);}
100% {-ms-transform: scale(1);}
}
@keyframes shcl_bounce {
0% {transform: scale(1);}
80% {transform: scale(.3);}
100% {transform: scale(1);}
}