网站功能使用向导创建:Bootstrap Tour
jopen
10年前
以最简单的方式向人们展示如何使用你的网站。实现向新用户通过一步一步引导来让他们掌握如何使用你的产品。
// Instance the tour var tour = new Tour({ steps: [ { element: "#my-element", title: "Title of my step", content: "Content of my step" }, { element: "#my-other-element", title: "Title of my step", content: "Content of my step" } ]}); // Initialize the tour tour.init(); // Start the tour tour.start();