Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save TimonVS/b548f28500abb72c9da2 to your computer and use it in GitHub Desktop.
spray = ->
for i in [0..10]
dot = new Layer
width: 10
height: 10
borderRadius: "50%"
backgroundColor: Color.random()
dot.center()
dot.placeBehind heart
dot.animate
properties:
x: heart.midX + randomXY()
y: heart.midY + randomXY()
dot.animate
delay: 0.5
properties: scale: 0
dot.on Events.AnimationEnd, -> @destroy()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment