-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearn CSS (2).css
More file actions
48 lines (48 loc) · 921 Bytes
/
Copy pathLearn CSS (2).css
File metadata and controls
48 lines (48 loc) · 921 Bytes
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
body {
backgound-color: #efefef;
}
.cartas{
display: block;
width: 400px;
margin: 10% auto;
transform: skew(-10deg, 10deg);
}
.caraA{
background-image: url("descarga.png");
width: 225px;
height: 225px;
animation: cartaA 2s infinite linear;
position: absolute;
border: 1px dotted black;
border-radius: 5px;
}
.caraB{
background-image: url("descarga1.png");
width: 225px;
height: 225px;
animation: cartaB 2s infinite linear;
border: 1px dotted black;
border-radius: 5px;
}
@keyframes cartaA{
0%, 25% {
transform: rotateY(90deg);
}
50% {
transform: rotateY(0deg);
}
75%, 100% {
transform: rotateY(90deg);
}
}
@keyframes cartaB{
0%{
transform: rotateY(0deg);
}
25%, 75% {
transform: rotateY(90deg);
}
100% {
transform: rotateY(0deg);
}
}