-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
13주차 Assignment - 조성수 #4
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
과제 통과입니다 ~ 과제 조건 충족 잘해주셨네요!
시험기간 파이팅입니다 ~
const letterVariants = { | ||
hidden: { opacity: 0, scale: 0.5 }, | ||
visible: { | ||
opacity: 1, | ||
scale: 1.3, | ||
transition: { duration: 0.8 }, // 글자당 최소 0.5초 이상 지속 | ||
}, | ||
}; | ||
|
||
const containerVariants = { | ||
hidden: {}, | ||
visible: { | ||
transition: { | ||
staggerChildren: 0.15, // 0.15초 간격으로 등장 | ||
}, | ||
}, | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
variant 사용도 잘 해주셨고 세부 조건도 잘 충족시켜주셨네요! 💯
조성수/animation/src/main.jsx
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다만 logo 외에 다른 기능은 없기 때문에 main보다는 파일명이 좀 더 직관적이면 좋겠습니다!
const Image = styled.img` | ||
width: 100%; | ||
height: 400px; | ||
object-fit: cover; | ||
`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
동물 사진의 높이를 설정해두어서 사진들이 다 잘립니다 ㅜㅜ
비율을 맞춰주시거나 사진이 좀 커지더라도 width와 같이 100%으로 하는 게 더 좋을 것 같아요
Description
Important content
Question
Reference