Skip to content

Instantly share code, notes, and snippets.

@akshay-nm
Last active May 24, 2020 12:51
Show Gist options
  • Save akshay-nm/9149da58d5c80607acadf778b4553213 to your computer and use it in GitHub Desktop.
Save akshay-nm/9149da58d5c80607acadf778b4553213 to your computer and use it in GitHub Desktop.
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