ESL Overlay közvetítésekhez
Fibinger Ádám
2020-06-19 2585d732dffb7df87babd32a4922835d8d142c8a
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
@keyframes grow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
 
@keyframes fadeIn {
    from { opacity: 0; display: none; }
    to { opacity: 1; display: inline-block; }
}
 
.grow {
    animation-name: grow;
    animation-duration: 0.5s;
}
 
#stripe {
    position: static;
    width: 0;
    margin: auto;
    background: transparent url(/assets/stripe.png) no-repeat center center !important;
}
#stripe.final {
    position: fixed;
    width: 100%;
}
 
#stripe.hidecontent * {
    display: none;
    opacity: 0;
}
 
#stripe.showcontent * {
    animation-name: fadeIn;
    animation-duration: 0.5s;
}