-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtra.css
More file actions
68 lines (65 loc) · 1.31 KB
/
tra.css
File metadata and controls
68 lines (65 loc) · 1.31 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
58
59
60
61
62
63
64
65
66
67
68
/* EASE */
.ease {
width: 100px;
height: 100px;
background-color: #add8e6;
margin-bottom: 10px;
transition: 2s ease;
}
.ease:hover {
border-radius: 50%;
background-color: blueviolet;
transition: 2s ease;
}
/* LINEAR */
.linear {
width: 100px;
height: 100px;
background-color: #add8e6;
margin-bottom: 10px;
transition: 2s linear;
}
.linear:hover {
border-radius: 50%;
transition: 2s linear;
background-color: blueviolet;
}
/* EASE-IN */
.ease-in {
width: 100px;
height: 100px;
background-color: #add8e6;
margin-bottom: 10px;
transition: 2s ease-in;
}
.ease-in:hover {
border-radius: 50%;
transition: 2s ease-in;
background-color: blueviolet;
}
/* EASE-OUT */
.ease-out {
width: 100px;
height: 100px;
background-color: #add8e6;
margin-bottom: 10px;
transition: 2s ease-out;
}
.ease-out:hover {
border-radius: 50%;
transition: 2s ease-out;
background-color: blueviolet;
}
/* EASE-IN-OUT */
.ease-in-out {
width: 100px;
height: 100px;
background-color: #add8e6;
margin-bottom: 10px;
transition: 2s ease-in-out;
}
.ease-in-out:hover {
border-radius: 50%;
transition: 2s ease-in-out;
background-color: blueviolet;
}