Skip to content

Instantly share code, notes, and snippets.

@shortcircuit3
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save shortcircuit3/d295e3853d47998fd10b to your computer and use it in GitHub Desktop.

Select an option

Save shortcircuit3/d295e3853d47998fd10b to your computer and use it in GitHub Desktop.
slider = (slides) ->
# Create wrapper
paginated = new Layer width: deviceWidth * slides, height: deviceHeight, x: 0
paginated.draggable.enabled = true
paginated.draggable.speedY = 0
i = 0
while i < slides
# Create views
view + i = new Layer
width: deviceWidth,
height: deviceHeight,
backgroundColor: randomColor,
x: slides * deviceWidth,
superLayer: paginated
i++
slider 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment