mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed loading
This commit is contained in:
parent
b0be1d82b6
commit
205af22aa7
2 changed files with 29 additions and 8 deletions
|
@ -219,14 +219,19 @@ const NodeImageSlideBlock: FC<IProps> = ({
|
|||
);
|
||||
|
||||
return (
|
||||
<div className={classNames(styles.wrap, { is_loading })} ref={wrap}>
|
||||
{is_loading && (
|
||||
<div className={styles.placeholder}>
|
||||
<div
|
||||
className={classNames(styles.wrap, { [styles.is_loading]: is_loading })}
|
||||
ref={wrap}
|
||||
>
|
||||
<div
|
||||
className={classNames(styles.placeholder, {
|
||||
[styles.is_loading]: is_loading || !loaded[current]
|
||||
})}
|
||||
>
|
||||
<div>
|
||||
<LoaderCircle size={96} />
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!is_loading && (
|
||||
<ImageSwitcher
|
||||
|
|
|
@ -5,6 +5,12 @@
|
|||
width: 100%;
|
||||
transition: height 0.25s;
|
||||
border-radius: $radius $radius 0 0;
|
||||
|
||||
.is_loading {
|
||||
.placeholder {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.image_container {
|
||||
|
@ -58,7 +64,17 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
background: $content_bg;
|
||||
z-index: 1;
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
touch-action: none;
|
||||
transition: opacity 0.25s;
|
||||
z-index: 2;
|
||||
opacity: 0;
|
||||
|
||||
&.is_loading {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
svg {
|
||||
opacity: 0.025;
|
||||
fill: white;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue