Skip to content

Instantly share code, notes, and snippets.

@haileyok
Created September 1, 2024 03:15
Show Gist options
  • Save haileyok/123d71ebd3e19174f57d1071df4a7387 to your computer and use it in GitHub Desktop.
Save haileyok/123d71ebd3e19174f57d1071df4a7387 to your computer and use it in GitHub Desktop.
const circle1Style = useAnimatedStyle(() => ({
opacity: interpolate(
likeIconAnimValue.value,
[0, 0.1, 0.95, 1],
[0, 0.4, 0.4, 0],
'clamp',
),
transform: [
{
scale: interpolate(
likeIconAnimValue.value,
[0, 0.4, 1],
[0, 1.5, 1.5],
'clamp',
),
},
],
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment