Skip to content

Instantly share code, notes, and snippets.

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

  • Save TimonVS/8309a083be9c4679df9d to your computer and use it in GitHub Desktop.

Select an option

Save TimonVS/8309a083be9c4679df9d to your computer and use it in GitHub Desktop.
liked = false
heart.on Events.Click, ->
liked = !liked
if liked
heart.animate
properties:
scale: 0.75
time: 0.1
heartLeft.animate
properties:
backgroundColor: pink
time: 0.2
delay: 0.1
heartRight.animate
properties:
backgroundColor: pink
time: 0.2
delay: 0.1
Utils.delay 0.1, ->
heart.animate
properties:
scale: 0.5
time: 0.5
else
heart.animate
properties:
scale: 0.3
time: 0.3
heartLeft.animate
properties:
backgroundColor: gray
time: 0.2
heartRight.animate
properties:
backgroundColor: gray
time: 0.2
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