jellyfish-web/src/components/images/style.css

43 lines
550 B
CSS
Raw Normal View History

2020-05-30 16:44:33 +02:00
.lazy-image-fadein {
opacity: 1;
2020-05-31 23:48:57 +02:00
transition: opacity 0.5s;
2020-05-30 16:44:33 +02:00
}
.lazy-image-fadein-fast {
opacity: 1;
2020-05-31 23:48:57 +02:00
transition: opacity 0.1s;
2020-05-30 16:44:33 +02:00
}
.lazy-hidden {
opacity: 0;
}
2020-06-29 23:57:05 +02:00
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
2020-05-23 18:35:34 +02:00
.lazy-blurhash-fadein-fast {
2020-06-29 23:57:56 +02:00
animation: fadein 0.1s;
2018-10-23 01:13:23 +03:00
}
2020-05-23 18:35:34 +02:00
.lazy-blurhash-fadein {
2020-06-29 23:57:56 +02:00
animation: fadein 0.4s;
2020-04-12 03:49:42 +02:00
}
2020-05-23 18:35:34 +02:00
.blurhash-canvas {
position: absolute;
2020-05-23 19:58:03 +02:00
top: 0;
2020-05-25 18:31:51 +02:00
right: 0;
bottom: 0;
2020-05-23 19:58:03 +02:00
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
2018-10-23 01:13:23 +03:00
}