Current.step.moveToNext()

Current.step.moveToNext(stepId, ignoreRequired, stepAnimation)

개요

다음 스텝으로 이동합니다. 다음 스텝은 파라미터에 스텝id를 통하여 지정할 수 있습니다.

파라미터

파라미터명
필수여부
타입
제약사항
설명

stepId

String

이동할 스텝 아이디

ignoreRequired

Boolean

필수 체크를 사용하는 경우 체크를 무시하고 이동할 수 있는 설정입니다.

stepAnimation

String

toRight: 우측에서 등장 toLeft: 좌측에서 등장 withDissolve: 밝기 변화

스텝 이동시 애니메이션 효과를 설정합니다.

예시

// 필수체크 무시하고 step2로 이동
Current.step.moveToNext('Step2', true, 'toRight')

Last updated

Was this helpful?