Slight delay is needed
This commit is contained in:
parent
ebd9f05f69
commit
989e788d8e
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
Rendered but hidden. Only show when visible
|
Rendered but hidden. Only show when visible
|
||||||
*/
|
*/
|
||||||
import { useLayoutEffect, useRef, useState } from 'preact/hooks';
|
import { useEffect, useRef, useState } from 'preact/hooks';
|
||||||
import { useInView } from 'react-intersection-observer';
|
import { useInView } from 'react-intersection-observer';
|
||||||
|
|
||||||
// The sticky header, usually at the top
|
// The sticky header, usually at the top
|
||||||
|
@ -26,7 +26,7 @@ export default function LazyShazam({ children }) {
|
||||||
skip: visibleStart || visible,
|
skip: visibleStart || visible,
|
||||||
});
|
});
|
||||||
|
|
||||||
useLayoutEffect(() => {
|
useEffect(() => {
|
||||||
if (!containerRef.current) return;
|
if (!containerRef.current) return;
|
||||||
const rect = containerRef.current.getBoundingClientRect();
|
const rect = containerRef.current.getBoundingClientRect();
|
||||||
if (rect.bottom > TOP) {
|
if (rect.bottom > TOP) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue