-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (57 loc) · 1.16 KB
/
styles.css
File metadata and controls
57 lines (57 loc) · 1.16 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
body{
text-align:center;
font-family: "Arial";
font-size:30px;
background-color: red;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
color:Purple;
}
#image1{
animation-name:movecards;
animation-duration:4s;
animation-delay: -2s;
position:relative;
}
#image2{
animation-name:movecards;
animation-duration:2s;
position:relative;
}
#image3{
animation-name:movecards;
animation-duration:2s;
position:relative;
}
#image4{
animation-name:movecards;
animation-duration:8s;
animation-delay: -2s;
position:relative;
}
#image5{
animation-name:movecards;
animation-duration:6s;
animation-delay: -2s;
position:relative;
}
#image6{
animation-name:movecards;
animation-duration:4s;
position:relative;
}
@keyframes example {
0% {background-color: red;}
25% {background-color: yellow;}
50% {background-color: blue;}
100% {background-color: green;}
}
@keyframes movecards{
from {left:-1000;}
to {left:1000;}
from{bottom:100;}
to{bottom:-100;}
from{transform:rotate(0deg);}
from{transform:rotate(360deg);}
}