Skip to content

Instantly share code, notes, and snippets.

@TimonVS
Last active December 13, 2015 18:07
Show Gist options
  • Save TimonVS/779f36d1d3d4beae9193 to your computer and use it in GitHub Desktop.
Save TimonVS/779f36d1d3d4beae9193 to your computer and use it in GitHub Desktop.
sketch = Framer.Importer.load("imported/onboarding-tour")
# Layers op visible zetten, anders zijn ze verborgen
sketch.Step_one.visible = true
sketch.Step_two.visible = true
page = new PageComponent
width: Screen.width
height: Screen.height
scrollVertical: false
# Layers toevoegen aan carousel
page.addPage(sketch.Step_one, "right")
page.addPage(sketch.Step_two, "right")
page.addPage(sketch.Step_three, "right")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment