Created
September 1, 2024 03:15
-
-
Save haileyok/123d71ebd3e19174f57d1071df4a7387 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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