보스 수익 계산기 초기 등장 끊김 완화
- BossCrystal 루트 애니메이션을 y 이동 없는 opacity fade (0.3s)로 단순화. 외부 transform과 내부 stagger 애니메이션이 동시에 돌면서 합성 단계가 겹치던 부하 제거 - will-change: opacity 힌트 추가해 GPU 레이어 승격 명시 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
48f43ecc0b
commit
f5c5c6927e
1 changed files with 4 additions and 3 deletions
|
|
@ -73,9 +73,10 @@ export default function BossCrystal() {
|
||||||
return (
|
return (
|
||||||
<motion.div
|
<motion.div
|
||||||
className="h-full"
|
className="h-full"
|
||||||
initial={{ opacity: 0, y: 30 }}
|
initial={{ opacity: 0 }}
|
||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1 }}
|
||||||
transition={{ duration: 0.4 }}
|
transition={{ duration: 0.3 }}
|
||||||
|
style={{ willChange: 'opacity' }}
|
||||||
>
|
>
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue