-
Notifications
You must be signed in to change notification settings - Fork 0
/
comic.css
137 lines (118 loc) · 1.79 KB
/
comic.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body{
position: relative;
width: 100vw;
height: 100vh;
background-color: black;
}
#cover{
position: relative;
width: 100vw;
height: 100vh;
left: -10px;
top: -10px;
animation: bg-animation 1s ease 0s infinite alternate,
bg-black 1s steps(2,end) 0s infinite alternate;
}
@keyframes bg-animation {
0% {
background-color: hsl(0, 50%, 50%);
}
100% {
background-color: hsl(100, 50%, 50%);
}
}
@keyframes bg-black {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.dancespace{
position: absolute;
height: 400px;
width: 300px;
border-radius: 50px;
border: 10px solid pink;
}
.shadow{
filter: brightness(0);
position: absolute;
width: 600px;
height: 600px;
left: -200px;
bottom: -120px;
}
.shadowtransform > img{
/* left: -200px; */
animation: shadow 3s cubic-bezier(0, 0.82, 1, 0.07) 0s infinite ;
}
@keyframes shadow {
0% {
left: -500px;
}
100% {
left: 100px;
}
}
.dance{
position: absolute;
height: 300px;
width: 300px;
left: 0px;
bottom: 0px;
animation: color-animation 10s ease 0s infinite;
}
#panel1{
left: 30px;
top: 30px;
}
#panel1shadow{
background-color: grey;
left: 30px;
top: 30px;
overflow: hidden;
}
#panel2{
left: 430px;
top: 30px;
filter: hue-rotate(100deg);
}
#panel2shadow{
background-color: grey;
left: 430px;
top: 30px;
overflow: hidden;
}
#mereba{
left: -60px;
}
#merebashadow > img{
/* left: -150px; */
}
#panel3{
left: 830px;
top: 30px;
filter: hue-rotate(200deg);
}
#panel3shadow{
background-color: grey;
left: 830px;
top: 30px;
overflow: hidden;
}
#yaz{
left: -90px;
}
#yazshadow > img{
/* left: -110px; */
}
@keyframes color-animation {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}