File size: 831 Bytes
27867f1 |
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 |
.backdropContainer {
contain: style size;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
touch-action: none;
}
.backdropImage {
background-repeat: no-repeat;
background-position: center center;
-webkit-background-size: cover;
background-size: cover;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
contain: strict;
}
.backdropImageFadeIn {
-webkit-animation: backdrop-fadein 0.8s ease-in-out normal both;
animation: backdrop-fadein 0.8s ease-in-out normal both;
}
@-webkit-keyframes backdrop-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes backdrop-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
|