1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/design/RevealFade.tsx

34 lines
866 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import { useEffect, useRef } from 'react'
2023-04-02 22:44:09 +02:00
export const RevealFade: React.FC<React.PropsWithChildren> = (props) => {
2021-04-18 01:56:23 +02:00
const { children } = props
const htmlElement = useRef<HTMLDivElement>(null)
useEffect(() => {
const observer = new window.IntersectionObserver(
(entries, observer) => {
entries.forEach((entry) => {
2021-04-18 01:56:23 +02:00
if (entry.isIntersecting) {
2021-12-04 15:52:51 +01:00
entry.target.className =
'opacity-100 visible translate-y-0 transition-all duration-700 ease-in-out'
2021-04-18 01:56:23 +02:00
observer.unobserve(entry.target)
}
})
},
{
root: null,
rootMargin: '0px',
threshold: 0.28
}
)
observer.observe(htmlElement.current as HTMLDivElement)
}, [])
return (
2021-12-04 15:52:51 +01:00
<div ref={htmlElement} className='invisible -translate-y-7 opacity-0'>
{children}
</div>
2021-04-18 01:56:23 +02:00
)
}