我一直在寻找解决这个问题很长时间没有运气,希望这里有人可以帮助我。
我正在使用一个名为“WordPress 全屏图库”的 wordpress 插件,并且我正在尝试在打开图库时放置下一个和上一个导航按钮。javascript代码具有以下内容:
// Jump to the next background in the current slideshow
next: function() {
var from = step;
if ( step ) {
$.vegas( 'slideshow', {
step: step
}, true );
$( 'body' ).trigger( 'vegasnext', [ $current.get(0), step - 1, from - 1 ] );
}
return $.vegas;
},
// Jump to the previous background in the current slideshow
previous: function() {
var from = step;
if ( step ) {
$.vegas( 'slideshow', {
step: step - 2
}, true );
$( 'body' ).trigger( 'vegasprevious', [ $current.get(0), step - 1, from - 1 ] );
}
return $.vegas;
},
我想知道如何添加具有这些功能的按钮,这些功能将带我进入下一张和上一张幻灯片。
我真的很感谢所有的帮助!