简体   繁体   English

Framer X - 如何自动跳转到下一页

[英]Framer X - how to jump to next page automatically

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.我最近潜入Framer X做原型,在某些页面我想播放gif来演示加载过程,然后它会自动跳转到下一页可能在3s之后,虽然我没有找到任何资源在互联网上获得这种效果,但我仍然想使用 Framer X 完成原型。

Thanks a lot!非常感谢!

You can try a simple javascript TimeOut您可以尝试一个简单的 javascript TimeOut

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

The above line calls the function callThisFuncion() after 3000 ms (or 3 seconds)上述行在3000毫秒(或 3 秒)后调用 function callThisFuncion() )

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM