I've been looking for a solution to this for a very long time with no luck, hopefully someone here can help me out.
I am using a wordpress plugin called 'WordPress Full Screen Gallery', and i'm trying to put next and previous navigation buttons when the gallery is opened. The javascript code has the following:
// 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;
},
I want to know how to add buttons with these functions that will take me to the next and previous slide.
I really appreciate all the help!