테두리 애니메이션 효과
const turn = useMotionValue(0);
useEffect(() => {
animate(turn, 1, {
ease: 'linear',
duration:5,
repeat: 'Infinity',
})
}, [])
const backgroundImage = useMotionTemplate`conic-gradient(from ${turn}turn, #6EE7B700 75%, #6EE7B7 100%)`;Last updated