-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.css
68 lines (56 loc) · 1016 Bytes
/
example.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
section {
height: 161px;
width: 286px;
position: relative;
}
div {
background: url('assets/bg.png') -2px -2px no-repeat;
background-size: cover;
height: 161px;
width: 286px;
transition: all 1s;
/*transition: all 3.0s cubic-bezier(0.94, 0.06, 0.94, 0.25)*/
}
section:hover div {
background-size: cover;
width: 143px;
height: 80px;
cursor: pointer;
}
/*div {
transform: scale(2);
}*/
/*section:hover div {
transform: rotate(10deg);
}*/
/*div:hover {
transform: rotateX(180deg);
}*/
/*div:hover {
transform: rotateY(180deg);
}*/
/*div:hover {
transform: rotateZ(180deg);
}*/
/*div:hover {
transform: rotate3D(1, 1, 1, 180deg);
}*/
/*section:hover div {
transform: translate(20px, 20px);
}*/
/*@keyframes blink {
0% {
color: green;
}
50% {
color: red;
transform: rotate(180deg);
transform: rotate(720deg);
}
}
p {
color: green;
font-weight: bold;
width: 300px;
animation: blink 1s infinite;
}*/