我想知道如何实现一个简单的 LinkedIn HopScotch。
我试图实施,但未能成功。
以下是我尝试的实现;
<h1 id="header">My First Hopscotch Tour</h1>
<div id="content">
<p>Content goes here...</p>
</div>
<button id="myBtn">Click Me</button>
<script>
var tour = {
id: "hello-hopscotch",
steps: [
{
title: "My Header",
content: "This is the header of my page.",
target: "header",
placement: "right"
},
]
};
$("#myBtn").click(function() {
hopscotch.startTour(tour);
});
</script>
我应该根据旅游对象添加一个<div>
带有 id 的对象吗?hello-hopscotch
http://cdnjs.com/libraries/hopscotch
是我的图书馆的来源;我已经实现hopscotch.min.css
和hopscotch.min.js
.
我做错了什么,我该如何解决?