0

I am using SurveyJs in my web app. My first 3 pages contain HTML which I wanted to slide after some seconds like in the below sample site using SurveyJS: https://www.vivewellness.com/consultation/

In the above site, after you enter the name, 3-4 pages slide without pressing continue button and I want to reproduce this in my site.

I am using: browser: Chrome, browser version: Version 74.0.3729.131, surveyjs platform : jQuery, surveyjs version: 1.0.84

At first I tried setting "maxTimeToFinish": "2.2" in JSON, but it didn't worked out for me.

Can someone help me out reproducing the same effect as in the sample site?

saksham7
  • 19
  • 5

1 Answers1

0

You could use goNextPageAutomatic option:

{
  goNextPageAutomatic: true,
  ...
}

Please see the doc

Dmitry Kurmanov
  • 765
  • 2
  • 12
  • 19