-
Notifications
You must be signed in to change notification settings - Fork 0
/
rome.component.css
109 lines (59 loc) · 1.39 KB
/
rome.component.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
/* .blue{
-webkit--webkit-animation: slide 2s infinite; /* Safari 4.0 - 8.0
-webkit-animation: slide 2s infinite;
}
@keyframes slide{
0%{transform: translateY(0px)}
100%{transform: translateY(30px)}
}
*/
.romegotoSigninleft{
height: 500px;
width: 100px;
background-color: red;
}
.romeSignuppage{
height: 500px;
width: 100px;
background-color:green;
}
.romegotoSigninlefttoright{
position: absolute;
z-index: 2;
-webkit-animation: slide 2s infinite;
animation: slide 2s infinite;
}
@keyframes slide{
0%{transform: translateX(0px)}
100%{transform: translateX(300px)}
}
.romeSignuppagetoleft{
position: absolute;
z-index: 1;
-webkit-animation: left 2s infinite;
animation: left 2s infinite;
}
@keyframes left{
0%{transform: translateX(0px)}
100%{transform: translateX(-300px)}
}
.romegotoSignintoleft{
position: absolute;
z-index: 1;
-webkit-animation: toleft 2s infinite;
animation: toleft 2s infinite;
}
@keyframes toleft{
0%{transform: translateX(300px)}
100%{transform: translateX(0px)}
}
.romeSignuppagetoright{
position: absolute;
z-index: 1;
-webkit-animation: toright 2s infinite;
animation: toright 2s infinite;
}
@keyframes toright{
0%{transform: translateX(-300px)}
100%{transform: translateX(0px)}
}