-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappear.css
More file actions
56 lines (50 loc) · 1.08 KB
/
Copy pathappear.css
File metadata and controls
56 lines (50 loc) · 1.08 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
@media (min-width: 1024px){
/* Left Appear Animation */
#about,
#myConnect,
#awan,
#gunungan {
animation: appearLeft linear;
animation-timeline: view();
animation-range: entry -20% cover 50%;
}
/* Right Appear Animation */
#wayang {
animation: appearRight linear;
animation-timeline: view();
animation-range: entry -20% cover 50%;
}
/* Bottom Appear Animation */
#filosofi{
animation: appearBottom linear;
animation-timeline: view();
animation-range: entry 0% cover 50%;
}
}
@keyframes appearLeft {
from {
opacity: 0;
transform: translateX(-100px);
}to{
opacity: 1;
transform: translateX(0px);
}
}
@keyframes appearRight {
from {
opacity: 0;
transform: translateX(100px);
}to{
opacity: 1;
transform: translateX(0px);
}
}
@keyframes appearBottom {
from {
opacity: 0;
transform: translateY(100px);
}to{
opacity: 1;
transform: translateY(0px);
}
}