gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 06:29:21 24 4
gpt4 key购买 nike

我的网页上有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上的视频相同的名称。

关于jquery - jQuery Galleria-如何将youtube视频标题添加到自动播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22183843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com