-
Notifications
You must be signed in to change notification settings - Fork 0
/
img.css
130 lines (113 loc) · 2.82 KB
/
img.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
/* .img{
width: 20px;
height: 40px;
} */
#colorcircul{
animation: wheel 2s infinite linear;
transform-origin: center;
transform-box: fill-box;
}
@keyframes wheel{
from{transform: rotateZ(0deg)}
to{transform: rotateZ(360deg)}}
.leg{
animation: leg 1s ease-in-out infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
}
@keyframes leg{
from{
transform: rotateZ(7deg)
}
to
{
transform: rotateZ(-5deg)
}
}
#hand {
animation: han 4s ease-in-out infinite alternate;
transform-origin: center;
transform-box: fill-box;
}
@keyframes han{
from{
transform: rotateZ(-5deg)
}
to
{
transform: rotateZ(-30deg)
}
}
.box1,.box2,.box3{
animation: box 2s ease-in-out infinite alternate;
}
@keyframes box{
from{
transform: translateY(20px)
}
to{
transform: translateY(-30px);
}
}
.blackbox1{
fill: rgb(0, 0, 0);
animation: blackbox1 2s ease-in-out infinite alternate;}
.blackbox2{
fill: rgb(0, 0, 0);
animation: blackbox2 4s ease-in-out infinite alternate;}
.blackbox3 {
fill: rgb(0, 0, 0);
animation: blackbox3 3s ease-in-out infinite alternate;}
@keyframes blackbox1{
from{transform: translateY(40px)}
to{transform: translateY(-40px);}}
@keyframes blackbox2{
from{transform: translateY(40px)}
to{transform: translateY(-35px);}}
@keyframes blackbox3{
from{transform: translateY(50px)}
to{transform: translateY(0px);}}
#camera{
fill: rgb(255, 255, 255);
animation: cam 2s ease infinite alternate;
}
@keyframes cam{
from{opacity: 1;}
to{opacity: 0;}}
.line4{
animation: line4 4s ease-in-out infinite alternate;
}
@keyframes line4{
from{transform: translateY(4px);}
to{transform: translateY(-2px);}}
.line1{animation: line1 2s ease-in-out infinite alternate;}
@keyframes line1{
from{transform: translateX(20px);}
to{transform: translateX(-20px);}}
.line2{animation: line2 2s ease-in-out infinite alternate;}
@keyframes line2{
from{transform: translateX(15px);}
to{transform: translateX(-15px);}}
.line3{animation: line3 2s ease-in-out infinite alternate;}
@keyframes line3{
from{transform: translateX(10px);}
to{transform: translateX(-10px);}}
.incbox{animation: incb 1s ease-in-out infinite alternate;}
@keyframes incb{
from{
transform: translatey(2px);
}
to{
transform: translatey(5.5px);}}
.inbox{animation: inb 1s ease-in-out infinite alternate;}
@keyframes inb{
from{transform: translatex(-2px);}
to{transform: translatex(-5.5px);}}
/* @media screen and (max-width:650px) {
.svg{
overflow: hidden;
margin-top:5em;
height: 7em;
width: 10em;
}
} */