Skip to content

Instantly share code, notes, and snippets.

@vincentmvdm
Created July 15, 2019 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincentmvdm/956307658c12eeb20793b8f0970ba7be to your computer and use it in GitHub Desktop.
Save vincentmvdm/956307658c12eeb20793b8f0970ba7be to your computer and use it in GitHub Desktop.
export function ArtistName(): Override {
const opacity = useTransform(scrollDistance, [0, -224], [1, 0], {
ease: bezierCurve,
})
const scale = useTransform(scrollDistance, [0, -224], [1, 0.85], {
ease: bezierCurve,
})
return {
opacity,
scale,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment