diff --git a/src/content/Animations/TargetCursor/TargetCursor.vue b/src/content/Animations/TargetCursor/TargetCursor.vue index 9280c88..9d00733 100644 --- a/src/content/Animations/TargetCursor/TargetCursor.vue +++ b/src/content/Animations/TargetCursor/TargetCursor.vue @@ -115,8 +115,10 @@ const setupAnimation = () => { } activeTarget = target; - - gsap.killTweensOf(cursorRef.value); + const corners = Array.from(cornersRef.value); + corners.forEach(corner => { + gsap.killTweensOf(corner); + }) spinTl.value?.pause(); gsap.set(cursorRef.value, { rotation: 0 });