我正在使用 Foundation 4 Joyride 插件,但是一旦用户单击我的 UI 上的某个按钮,我需要它启动(并重新启动),但我无法这样做。通过遵循 Zurb 网站上提供的代码,我只能在网站首次运行时运行它。
Joyride 的文档在这里:
http://foundation.zurb.com/docs/components/joyride.html
我的初始化代码在这里
$(document).foundation().foundation('joyride', 'start', {template : { // HTML segments for tip layout
link : '<a href="#close" class="joyride-close-tip " style="background: url(../img/bp_sprite.png) no-repeat 0px -940px; margin-top: -4px; "> </a>',
timer : '<div class="joyride-timer-indicator-wrap"><span class="joyride-timer-indicator"></span></div>',
tip : '<div class="joyride-tip-guide" style="background: white; color: black; margin-top: -27px; margin-left: 2px; border-top: 1px dashed #c1c1c1; width: 100%; max-width: 457px;"></div>',
wrapper : '<div class="joyride-content-wrapper" style="background-color: white; color: black; padding: 4px; "></div>',
button : '<a href="#" class="small button joyride-next-tip" style="display: none;"></a>'
}});