Skip to content

Instantly share code, notes, and snippets.

@TimonVS
Last active January 29, 2016 13:47
Show Gist options
  • Select an option

  • Save TimonVS/3e8a8c89fd5fa5620f97 to your computer and use it in GitHub Desktop.

Select an option

Save TimonVS/3e8a8c89fd5fa5620f97 to your computer and use it in GitHub Desktop.
liked = false
heart.on Events.Click, ->
heart.animate
time: 0.1
properties:
scale: if liked then 0.4 else 0.75
Utils.delay 0.1, -> heart.animate
time: 0.5
properties:
scale: 0.5
heartLeft.animate
time: 0.2
properties: backgroundColor: if liked then gray else pink
heartRight.animate
time: 0.2
properties: backgroundColor: if liked then gray else pink
liked = not liked
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment