Skip to content
Snippets Groups Projects
Commit b039362c authored by Oliver Wiese's avatar Oliver Wiese
Browse files

Update Onboarding Video

parent 7cb0f103
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ class FingertipsManager {
case .cancelled,
.ended :
UIView.animate(withDuration: 0.2, animations: { [weak self] in
UIView.animate(withDuration: 0.4, animations: { [weak self] in
self?.fingertipView(for: touch)?.alpha = 0
}, completion: { [weak self] (success: Bool) in
self?.fingertipView(for: touch)?.removeFromSuperview()
......@@ -155,7 +155,7 @@ private class FingertipView : UIView {
self.layer.cornerRadius = (self.frame.height / 2)
self.layer.masksToBounds = true
self.layer.borderWidth = 8
self.layer.borderColor = UIColor.black.withAlphaComponent(0.2).cgColor
self.backgroundColor = UIColor.white.withAlphaComponent(0.2)
self.layer.borderColor = UIColor.black.withAlphaComponent(0.7).cgColor
self.backgroundColor = UIColor.white.withAlphaComponent(0.7)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment