import { useEffect } from "react"; import { gsap } from "gsap"; import { ScrollTrigger } from "@/plugins"; import Link from "next/link"; import Blog1 from "../../../../public/assets/imgs/blog/1.jpg"; import Blog2 from "../../../../public/assets/imgs/blog/2.jpg"; import Blog3 from "../../../../public/assets/imgs/blog/3.jpg"; import Image from "next/image"; gsap.registerPlugin(ScrollTrigger); const BlogRelated = () => { useEffect(() => { if (typeof window !== "undefined") { let device_width = window.innerWidth; let tHero = gsap.context(() => { gsap.set(".blog__animation .blog__item", { x: 50, opacity: 0 }); if (device_width < 1023) { const blogList = gsap.utils.toArray(".blog__animation .blog__item"); blogList.forEach((item, i) => { let blogTl = gsap.timeline({ scrollTrigger: { trigger: item, start: "top center+=200", }, }); blogTl.to(item, { x: 0, opacity: 1, ease: "power2.out", duration: 1.5, }); }); } else { gsap.to(".blog__animation .blog__item", { scrollTrigger: { trigger: ".blog__animation .blog__item", start: "top center+=300", markers: false, }, x: 0, opacity: 1, ease: "power2.out", duration: 2, stagger: { each: 0.3, }, }); } }); return () => tHero.revert(); } }, []); return ( <>

Related Aricles

Blog Thumbnail BLog Thumbnail

UI Design . 02 May 2019

Ways of lying to yourself about your new relationship.
Read More{" "}
Blog Thumbnail BLog Thumbnail

UI Design . 02 May 2019

How to manage a talented and successful de sign team
Read More{" "}
Blog Thumbnail BLog Thumbnail

UI Design . 02 May 2019

How to bring fold to your startup company with Axtra
Read More{" "}
); }; export default BlogRelated;