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

34 lines
476 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-05-23 18:35:34 +02:00
.lazy-blurhash-fadein-fast {
transition: opacity 0.2s;
2018-10-23 01:13:23 +03:00
}
2020-05-23 18:35:34 +02:00
.lazy-blurhash-fadein {
transition: opacity 0.7s;
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%;
2020-05-25 18:31:51 +02:00
z-index: 100;
pointer-events: none;
2018-10-23 01:13:23 +03:00
}