68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useRef, memo } from "react";
|
|
|
|
import { setIntervalOnVisible } from "@/utils/set-timeout-on-visible";
|
|
import data from "./hero-flame-data.json";
|
|
|
|
function HeroFlame() {
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
const ref2 = useRef<HTMLDivElement>(null);
|
|
const wrapperRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
let index = 0;
|
|
|
|
const interval = setIntervalOnVisible({
|
|
element: wrapperRef.current,
|
|
callback: () => {
|
|
if (!ref.current || !ref2.current) return;
|
|
|
|
index++;
|
|
if (index >= data.length) index = 0;
|
|
|
|
ref.current.innerHTML = data[index];
|
|
ref2.current.innerHTML = data[index];
|
|
},
|
|
interval: 85,
|
|
});
|
|
|
|
return () => interval?.();
|
|
}, []);
|
|
|
|
return (
|
|
<div
|
|
className="cw-686 h-190 top-408 absolute flex gap-16 pointer-events-none select-none lg-max:hidden"
|
|
ref={wrapperRef}
|
|
>
|
|
<div className="flex-1 overflow-clip relative">
|
|
<div
|
|
className="text-black-alpha-20 font-ascii absolute bottom-0 -left-380 fc-decoration"
|
|
dangerouslySetInnerHTML={{ __html: data[0] }}
|
|
ref={ref}
|
|
style={{
|
|
whiteSpace: "pre",
|
|
fontSize: "9px",
|
|
lineHeight: "11px",
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex-1 overflow-clip relative">
|
|
<div
|
|
className="text-black-alpha-20 font-ascii absolute bottom-0 -right-380 -scale-x-100 fc-decoration"
|
|
dangerouslySetInnerHTML={{ __html: data[0] }}
|
|
ref={ref2}
|
|
style={{
|
|
whiteSpace: "pre",
|
|
fontSize: "9px",
|
|
lineHeight: "11px",
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default memo(HeroFlame);
|