aboutsummaryrefslogtreecommitdiffstats
path: root/src/less/lib/animation.less
blob: 4c8628e0f7b5645e757960e186ef080ca0ca1b0e (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 {
    from {
        transform: translateY(10px);
        opacity: 0.5;
    }

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

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

    to {
        opacity: 1;
    }
}