0

I recently dove into Framer X to make the prototype, and in some page I want to play the gif to demonstrate the process of loading and after that it will jump to next page automatically may be after 3s, although I haven't find any resources in the internet for the this effect but I still want to finish the prototype by using Framer X.

Thanks a lot!

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343

1 Answers1

0

You can try a simple javascript TimeOut

setTimeout(function() { callThisFuncion()}, 3000)

The above line calls the function callThisFuncion() after 3000 ms (or 3 seconds)

ptamzz
  • 9,235
  • 31
  • 91
  • 147