0

我一直在寻找解决这个问题很长时间没有运气,希望这里有人可以帮助我。

我正在使用一个名为“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;
    },

我想知道如何添加具有这些功能的按钮,这些功能将带我进入下一张和上一张幻灯片。

我真的很感谢所有的帮助!

4

1 回答 1

0

我不太了解那个插件,但如果你对 wordpress 有足够的了解,你可以使用不同的 jquery 滑块。我刚刚在谷歌上找到了这个。

通常,如果您找不到如何在文档中添加某些内容,那么试图弄清楚它可能是一场噩梦。但我可能是错的。我只是不喜欢重新发明轮子,除非我绝对必须这样做。

http://manos.malihu.gr/simple-jquery-fullscreen-image-gallery

于 2012-09-06T03:16:18.313 回答