Last active
August 15, 2017 21:54
-
-
Save RishabhTayal/435b23c605fc77fbcf56f59420dc4f67 to your computer and use it in GitHub Desktop.
!Takes 106ms to compile!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class func animateLeftToRight(_ view: SpringLabel) { | |
view.animation = "fadeInRight" | |
view.duration = 2.0 | |
view.force = 0.4 | |
view.velocity = 0.3 | |
view.damping = 1 | |
view.curve = "easeIn" | |
view.animate() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment