Skip to content
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

[Feat] #150 - 대기방 툴팁 기능 구현 #153

Merged
merged 12 commits into from
Jan 20, 2022

Conversation

L-j-h-c
Copy link
Member

@L-j-h-c L-j-h-c commented Jan 20, 2022

🌴 PR 요약

🌱 작업한 브랜치

🌱 작업한 내용

  • fromStart에 따른 툴팁 이미지 분기처리
  • 툴팁버튼 터치시 툴팁 애니메이션 처리
  • 툴팁이 떠있는 동안 외부 터치시 툴팁 dismiss
  • 툴팁이 일정 시간 이후 사라지는 애니메이션
  • (기타) : 보관함 테두리 처리

📮 관련 이슈

@L-j-h-c L-j-h-c added Feat 새로운 기능 구현 🧚‍♀️Devil『쥬노』 뀨의 의지 공식후계자입니다 아몰랑 labels Jan 20, 2022
@L-j-h-c L-j-h-c self-assigned this Jan 20, 2022
Comment on lines 195 to 208
UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseIn, animations: {
self.toolTipImageView.transform = CGAffineTransform.identity
self.toolTipImageView.transform = CGAffineTransform.identity
self.toolTipImageView.alpha = 1
self.toolTipImageView.alpha = 1
}, completion: nil)
}

private func dismissToolTip() {
UIView.animate(withDuration: 0.2, delay: 0, options: .curveEaseIn, animations: {
self.toolTipImageView.transform = CGAffineTransform.identity
self.toolTipImageView.transform = CGAffineTransform.identity
self.toolTipImageView.alpha = 0
self.toolTipImageView.alpha = 0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넹..? 선배 좀 자자..

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

으아아아앙ㄱ

@L-j-h-c L-j-h-c merged commit e9efe2b into TeamSparker:develop Jan 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🧚‍♀️Devil『쥬노』 뀨의 의지 공식후계자입니다 아몰랑 Feat 새로운 기능 구현
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feat] 대기방 툴팁 구현하기
2 participants