Created
January 29, 2016 13:23
-
-
Save TimonVS/208cc0e204dea4deab4a to your computer and use it in GitHub Desktop.
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
| liked = false | |
| heart.on Events.Click, -> | |
| liked = !liked | |
| if liked | |
| # Animatie om het hart te vergroten | |
| heart.animate | |
| properties: | |
| scale: 0.75 | |
| time: 0.1 | |
| # Verandert de kleur van het hart | |
| heartLeft.animate | |
| properties: | |
| backgroundColor: pink | |
| time: 0.2 | |
| delay: 0.1 | |
| heartRight.animate | |
| properties: | |
| backgroundColor: pink | |
| time: 0.2 | |
| delay: 0.1 | |
| # Animatie om het hart weer te verkleinen naar de orginele staat met een vertraging van 0.1 seconde | |
| Utils.delay 0.1, -> | |
| heart.animate | |
| properties: | |
| scale: 0.5 | |
| time: 0.5 | |
| else | |
| # Animatie om het hart te verkleinen | |
| heart.animate | |
| properties: | |
| scale: 0.3 | |
| time: 0.3 | |
| # Verandert de kleur van het hart | |
| heartLeft.animate | |
| properties: | |
| backgroundColor: gray | |
| time: 0.2 | |
| heartRight.animate | |
| properties: | |
| backgroundColor: gray | |
| time: 0.2 | |
| # Animatie om het hart weer te vergroten naar de orginele staat met een vertraging van 0.1 seconde | |
| Utils.delay 0.1, -> | |
| heart.animate | |
| properties: | |
| scale: 0.5 | |
| time: 0.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment