Skip to content

Instantly share code, notes, and snippets.

@aranda-adapptor
Created December 24, 2020 04:49
Show Gist options
  • Save aranda-adapptor/7df1c9e0d7f95cd486b2a7a6bdc147a4 to your computer and use it in GitHub Desktop.
Save aranda-adapptor/7df1c9e0d7f95cd486b2a7a6bdc147a4 to your computer and use it in GitHub Desktop.
Use star id to vary the star animation
const animatedStyle = useAnimatedStyle(() => {
const x = Math.sin(props.time.value * 2 + props.id) * 50;
const y = Math.cos(props.time.value * 2 + props.id) * 50;
return {
left: props.x + x,
top: props.y + y,
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment