Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80684 views
1
.example-enter,
2
.example-leave {
3
-webkit-transition: all .25s;
4
transition: all .25s;
5
}
6
7
.example-enter,
8
.example-leave.example-leave-active {
9
opacity: 0.01;
10
}
11
12
.example-leave.example-leave-active {
13
margin-left: -128px;
14
}
15
16
.example-enter {
17
margin-left: 128px;
18
}
19
20
.example-enter.example-enter-active,
21
.example-leave {
22
margin-left: 0;
23
opacity: 1;
24
}
25
26
.animateExample {
27
display: block;
28
height: 128px;
29
position: relative;
30
width: 384px;
31
}
32
33
.animateItem {
34
color: white;
35
font-size: 36px;
36
font-weight: bold;
37
height: 128px;
38
line-height: 128px;
39
position: absolute;
40
text-align: center;
41
-webkit-transition: all .25s; /* TODO: make this a move animation */
42
transition: all .25s; /* TODO: make this a move animation */
43
width: 128px;
44
}
45
46