gpt4 book ai didi

jquery 和 vimeo : won't autoplay

转载 作者:行者123 更新时间:2023-12-01 00:15:35 25 4
gpt4 key购买 nike

我有一个 vimeo 视频,当用户单击 div 时会加载。

<div class="vimeobox" ID="vimeo-ID-goes-here"></div>

这是我的 JavaScript:

$(".vimeobox").click(function() {

var iframe = "<iframe />";
var id = $(this).attr('id'); //
var url = "http://player.vimeo.com/video/" + id + "?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=1";

var width = 700;
var height = 394;
var frameborder = 0;

$(iframe, {
name: 'videoframe',
id: 'videoframe',
src: url,
width: width,
height: height,
frameborder: frameborder,
type: 'text/html',
allowfullscreen: true,
webkitAllowFullScreen: true,
mozallowfullscreen: true
}).css({'position': 'absolute', 'top': '0', 'left': '0'}).appendTo(this);

$(this).find('img').fadeOut(function() { $(this).remove();

});

});

单击 div 时会出现 vimeo 播放器(删除预览图像)...但视频不会自动播放。

我不知道问题是什么。我正在为 YouTube 播放器使用几乎相同的代码(减去 url 变量)并且它会自动播放?

最佳答案

只需将网址中的&更改为?即可。

关于jquery 和 vimeo : won't autoplay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9622289/

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