Skip to content

Instantly share code, notes, and snippets.

@TimonVS
Created January 26, 2016 10:48
Show Gist options
  • Save TimonVS/585885b3e6af5ec46433 to your computer and use it in GitHub Desktop.
Save TimonVS/585885b3e6af5ec46433 to your computer and use it in GitHub Desktop.
bg = new BackgroundLayer
heart = new Layer
width: bg.width
height: bg.height
backgroundColor: "white"
heartLeft = new Layer
superLayer: heart
midX: heart.midX - 15
midY: heart.midY
width: 100
height: 70
borderRadius: "50%"
backgroundColor: "gray"
rotation: 55
heartRight = new Layer
superLayer: heart
midX: heart.midX + 15
midY: heart.midY
width: 100
height: 70
borderRadius: "50%"
backgroundColor: "gray"
rotation: -55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment