browser gsap glitch

This commit is contained in:
steven 2021-07-20 15:25:11 -07:00
parent e8d2637c3b
commit cd76c3494f
1 changed files with 22 additions and 9 deletions

View File

@ -1,21 +1,34 @@
import { useRef, useEffect } from 'react'
import NavBarBeta from '../components/NavBarBeta' import NavBarBeta from '../components/NavBarBeta'
import HeroSectionHome from '../components/HeroSectionHome' import HeroSectionHome from '../components/HeroSectionHome'
import TradeSection from '../components/TradeSection' import TradeSection from '../components/TradeSection'
import FooterSection from '../components/FooterSection' import FooterSection from '../components/FooterSection'
import LendSection from '../components/LendSection' import LendSection from '../components/LendSection'
import CommunitySection from '../components/CommunitySection' import CommunitySection from '../components/CommunitySection'
import { TweenMax } from 'gsap'
const Index = () => { const Index = () => {
let app = useRef(null)
useEffect(() =>{
TweenMax.to(app.current, 0, {css: {visibility:'visible'}})
}, [])
return ( return (
<div className={`bg-th-bkg-1 text-th-fgd-1 transition-all overflow-hidden`}> <div
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div> ref={app}
<NavBarBeta /> className="App">
<HeroSectionHome /> <div className={`bg-th-bkg-1 text-th-fgd-1 transition-all overflow-hidden`}>
<TradeSection /> <div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div>
<LendSection /> <NavBarBeta />
<CommunitySection /> <HeroSectionHome />
<FooterSection /> <TradeSection />
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div> <LendSection />
<CommunitySection />
<FooterSection />
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div>
</div>
</div> </div>
) )
} }