intro.js

Firing javascript function between intro.js steps

不羁的心 提交于 2019-11-27 03:24:10
问题 I am using Intro.js for a guided tour. I would like to fire javascript functions between some of the steps but I don't manage to. An idea would be to define different intros, and fire the javascript functions between the intros. Is there a cleaner way to do it ? 回答1: I think I found a better solution, by setting a callback on step changes : introJs().onchange(function(targetElement) { console.log(targetElement.id); switch (targetElement.id) { case "step1": function1(); break; case "step2":