aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/lib/animation.scss
blob: b6c22d42824eb788f83db494397e15eb5152b145 (plain)
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
// --------------------------------------------------------------
// Animations
// --------------------------------------------------------------

@keyframes plyr-progress {
    to {
        background-position: $plyr-progress-loading-size 0;
    }
}

@keyframes plyr-popup {
    0% {
        opacity: 0.5;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes plyr-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}