Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Hopscotch 在为我的网站开发旅游时非常适合我。我正在寻找一种以一些自定义时间延迟自动执行游览步骤的方法,但没有找到任何相同的 API。
Hopscotch API 提供了一个可以在 JavaScript 的 setInterval() 方法内部调用的 nextStep() 方法。像这样的东西会每 3 秒显示一次下一步。
setInterval(function() { hopscotch.nextStep() }, 3000);
这是一个工作示例JSFiddle。