2017-04-27 41 views
0

我正在模拟Snapchat。当您点击相机页面图层上的相机按钮时,这应该会引导您进入编辑相片页面(另一图层)。如何让编辑照片页面层出现像Snapchat一样没有.showNext.overlayTop如何使图层不出现转换

代码

# Create FlowComponent, show layerA 
flow = new FlowComponent 
flow.showNext(step1) 

snapchat.cameraButton.on Events.Click, -> 
    flow.showNext(step2) 

互动

enter image description here Edit Photo Page

回答

1

showNext设置animatefalse瞬间转换。

与您的代码:

snapchat.cameraButton.on Events.Click, -> 
    flow.showNext(step2, animate: false)