-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
74 lines (66 loc) · 1.62 KB
/
Copy pathApp.css
File metadata and controls
74 lines (66 loc) · 1.62 KB
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
*,
*::before,
*::after {
margin: 0,;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background: rgb(114, 13, 80);
}
.container {
width: 100%;
height: 100%;
overflow: hidden; /*dışarı taşmasın diye.taşanları gizleme*/
position: relative;
}
.container span {
position: absolute;
background: transparent;
box-shadow: inset 0 0 20px #fff;
border-radius: 50%; /*yuvarlak yaptık*/
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
animation: anime 2s linear infinite;
-webkit-animation: anime 2s linear infinite;
}
.container span::before {
content: "";
width: 100%;
height: 100%;
background: radial-gradient(#fff, transparent);
display: block;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
transform: scale(0.5)translate(-30%, -20%);
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
}
@keyframes anime {
0% {
transform: translateY(0%);
-webkit-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
opacitiy: 1;
}
100% {
transform: translateY(1200%);
-webkit-transform: translateY(1200%);
-moz-transform: translateY(1200%);
-ms-transform: translateY(1200%);
-o-transform: translateY(1200%);
opacitiy: 0;
}
}