jQuery Galleria - 如何将YouTube视频标题添加到自动播放中



我的网页上有Galleria自动播放:http://www.clickclack.cz/。我想添加YouTube视频标题(只有YouTube视频)。你能帮我吗,怎么做?

我的设置在这里:

    $(function() {
    Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');          
    Galleria.run('#galleria', {
        _toggleInfo: false,
        extend: function() { 
            var gallery = this; 
            gallery.play(); 
            var paused = 0; 
            this.$('stage').hover(function() { 
                if (paused) { 
                    $(this).data('overTime', '1');
                } else { 
                    paused = 1; 
                    gallery.pause(); 
                    $(this).data('overTime', new Date().getTime()); 
                } 
            }, function() { 
                var outTime = new Date().getTime(); 
                var hoverTime = (outTime - $(this).data('overTime'))/1000;
                if (hoverTime < 0.5) { // restart slideshow if hover under 0.5 seconds 
                    paused = 0; 
                    gallery.play(); 
                } 
            }); 
        } 
    });
});

最后我找到了解决方案。在 JS 中我添加了

youtube: {
            modestbranding: 1,
            autohide: 1,
            color: 'white',
            hd: 1,
            rel: 0,
            showinfo: 1
        }

showInfo: 1 显示视频在 YouTube 上的名称。

相关内容

  • 没有找到相关文章

最新更新