Last active
May 24, 2020 12:51
-
-
Save akshay-nm/9149da58d5c80607acadf778b4553213 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
const props = useSpring({ | |
from: { left: '0%', top: '0%', width: '0%', height: '100%', background: 'lightgray' }, | |
to: async next => { | |
while (!imageLoaded) { | |
await next({ left: '0%', top: '0%', width: '100%', height: '100%', background: 'lightgray' }) | |
await next({ background: 'darkgray' }) | |
} | |
next({ width: '0%', left: '100%' }) | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment