-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.circle.css
66 lines (61 loc) · 2.08 KB
/
jquery.circle.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
.CircleJS {
height: 100px;
width: 100px;
border: 3px solid #1980D5;
position: absolute;
left: 0;
top: 0;
z-index: 1;
border-radius: 50%;
box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5),
0 0 3px #1980D5,
0 0 3px #1980D5 inset;
}
@-webkit-keyframes CircleJSEnterAnimationScale {
from { -webkit-transform: scale(10); transform: scale(10); }
to { -webkit-transform: scale(1); transform: scale(1); }
}
@-moz-keyframes CircleJSEnterAnimationScale {
from { -moz-transform: scale(10); transform: scale(10); }
to { -moz-transform: scale(1); transform: scale(1); }
}
@-o-keyframes CircleJSEnterAnimationScale {
from { -o-transform: scale(10); transform: scale(10); }
to { -o-transform: scale(1); transform: scale(1); }
}
@keyframes CircleJSEnterAnimationScale {
from { transform: scale(10); }
to { transform: scale(1); }
}
@-webkit-keyframes CircleJSEnterAnimationOpacity {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes CircleJSEnterAnimationOpacity {
from { opacity: 0; }
to { opacity: 1; }
}
@-o-keyframes CircleJSEnterAnimationOpacity {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes CircleJSEnterAnimationOpacity {
from { opacity: 0; }
to { opacity: 1; }
}
.CircleJSAnimated {
-webkit-animation: CircleJSEnterAnimationScale 0.7s ease,
CircleJSEnterAnimationOpacity 0.7s linear;
-moz-animation: CircleJSEnterAnimationScale 0.7s ease,
CircleJSEnterAnimationOpacity 0.7s linear;
-o-animation: CircleJSEnterAnimationScale 0.7s ease,
CircleJSEnterAnimationOpacity 0.7s linear;
animation: CircleJSEnterAnimationScale 0.7s ease,
CircleJSEnterAnimationOpacity 0.7s linear;
}
.CircleJSTransitioned {
-webkit-transition: transform 0.7s ease, opacity 0.7s linear;
-moz-transition: transform 0.7s ease, opacity 0.7s linear;
-o-transition: transform 0.7s ease, opacity 0.7s linear;
transition: transform 0.7s ease, opacity 0.7s linear;
}