Skip to content

Instantly share code, notes, and snippets.

@TimonVS
Created January 29, 2016 13:23
Show Gist options
  • Select an option

  • Save TimonVS/208cc0e204dea4deab4a to your computer and use it in GitHub Desktop.

Select an option

Save TimonVS/208cc0e204dea4deab4a to your computer and use it in GitHub Desktop.
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