보스 수익 계산기 카드 슬라이드업 애니메이션 복원 + GPU 힌트 강화

- initial y:30, duration 0.4 복원하되 will-change: transform, opacity
  명시해 GPU 레이어 승격 확실히
- delay 0.03초 추가해 첫 프레임 레이아웃 안정화 후 애니메이션 시작

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-04-22 00:26:14 +09:00
parent f5c5c6927e
commit 670d8abc12

View file

@ -73,10 +73,10 @@ export default function BossCrystal() {
return (
<motion.div
className="h-full"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.3 }}
style={{ willChange: 'opacity' }}
initial={{ opacity: 0, y: 30 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.4, delay: 0.03 }}
style={{ willChange: 'transform, opacity' }}
>
{isLoading ? (
<div