Created
November 7, 2019 16:48
-
-
Save baltazarparra/92493ca23785566a1e6a2e7c896346cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import styled from 'styled-components'; | |
import { Controller, Scene } from 'react-scrollmagic'; | |
import { Tween, Timeline } from 'react-gsap'; | |
const Wrap = styled.div` | |
background-color: silver; | |
width: 100%; | |
overflow: hidden; | |
position: relative; | |
height: 100%; | |
`; | |
const LandingApp = () => ( | |
<Wrap> | |
<Controller> | |
<Scene offset={20} triggerHook='onLeave' duration={2000} pin indicators> | |
<Timeline | |
wrapper={ | |
<div | |
style={{ | |
backgroundColor: 'gray', | |
height: '100vh', | |
width: '300px', | |
overflow: 'hidden', | |
position: 'relative', | |
margin: '20px auto', | |
}} | |
/> | |
} | |
target={ | |
<p>Ocus Pocus</p> | |
} | |
> | |
<Tween from={{ y: 0, color: 'navy' }} to={{ y: 100, color: 'green' }} /> | |
<Tween from={{ color: 'blue' }} to={{ color: 'red' }} /> | |
<Timeline | |
delay={-2} | |
wrapper={ | |
<div | |
style={{ | |
overflow: 'hidden', | |
position: 'relative', | |
margin: '20px auto', | |
backgroundColor: 'white', | |
color: 'white', | |
}} | |
/> | |
} | |
target={ | |
<p>XABLAU</p> | |
} | |
> | |
<Tween from={{ x: 0, color: 'red' }} to={{ x: 100, color: 'green' }} /> | |
<Tween from={{ color: 'blue' }} to={{ color: 'navy' }} /> | |
</Timeline> | |
</Timeline> | |
</Scene> | |
</Controller> | |
</Wrap> | |
); | |
export default LandingApp; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment