import { IParallax, IParallaxLayer, Parallax, ParallaxLayer, } from "@react-spring/parallax"; import { useScroll } from "@react-spring/web"; import React, { useEffect } from "react"; import { useRef } from "react"; import Introduction from "../shared/components/animated/Introduction"; import Footer from "../shared/components/Footer"; import Header from "../shared/components/Header"; import AboutSection from "../shared/components/home/AboutSection"; import RoadMap from "../shared/components/home/RoadMap"; import TokenomicsSection from "../shared/components/home/TokenomicsSection"; // Little helpers ... const url = (name: string, wrap = false) => `${ wrap ? "url(" : "" }https://awv3node-homepage.surge.sh/build/assets/${name}.svg${ wrap ? ")" : "" }`; function Animated() { const parallax = useRef(null!); const [isScrolled, setIsScrolled] = React.useState(false); const onScroll = () => { if (parallax.current.container.current.scrollTop > 0) { setIsScrolled(true); } else { setIsScrolled(false); } }; useEffect(() => { if (!parallax.current || !parallax.current.container) return; parallax.current.container.current.onscroll = onScroll; }); return (
{/* */} {/* section 1 */} parallax.current.scrollTo(1)} onScroll={(e) => { console.log("e", e); }} > parallax.current.scrollTo(2)} style={{ display: "flex", alignItems: "center", justifyContent: "center", }} > parallax.current.scrollTo(3)} > parallax.current.scrollTo(0)} > parallax.current.scrollTo(0)} >
); } export default Animated;