私はこれに対する解決策を非常に長い間探していましたが、うまくいけば、ここの誰かが私を助けてくれることを願っています.
「WordPress Full Screen Gallery」というワードプレス プラグインを使用しており、ギャラリーを開いたときに次と前のナビゲーション ボタンを配置しようとしています。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;
},
次のスライドと前のスライドに移動するこれらの機能を備えたボタンを追加する方法を知りたいです。
すべての助けに本当に感謝しています!