私はシェパードツアーガイドを働こうとしています。シェパードツアーガイドJSはスクロールしていません
http://github.hubspot.com/shepherd/docs/welcome/
私はscrollToを設定している:真の両方のグローバルと各シェパードツアーストップではなく、ページがどんなジャンプしません。次に例を示します。
http://codepen.io/anon/pen/mRvdKv
(function() {
var tour = new Shepherd.Tour({
defaults: {
classes: 'shepherd-theme-square',
scrollTo: true
}
});
tour.addStep('example', {
title: 'Example Shepherd',
text: 'This is the first step',
attachTo: '#test1 bottom',
advanceOn: '.docs-link click',
scrollTo: true
});
tour.addStep('example', {
title: 'Example Shepherd',
text: 'This is the second step',
attachTo: '#test2 bottom',
advanceOn: '.docs-link click',
scrollTo: true
});
tour.addStep('example', {
title: 'Example Shepherd',
text: 'This is the third step',
attachTo: '#test3 top',
advanceOn: '.docs-link click',
scrollTo: true
});
tour.start();
})();
私は明らかに何かが足りないのですか?
はこれが受け入れ答えなければなりません - 私のために完全に働きました。.. –