我正在尝试为我的vimeo视频添加循环功能,但无效。你知道Chrome(Mac)是否支持它还是有办法解决它?
<iframe src="//player.vimeo.com/video/112412666#t=0s?title=0&byline=0&portrait=0&autoplay=1&loop=1" width="700" height="467" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
答案 0 :(得分:6)
经过大量研究后我发现问题是视频ID后面的“#t = 0s”,所以代码应如下所示:
<iframe frameborder="0" width="700" height="467" src="http://player.vimeo.com/video/112412666?title=0&byline=0&portrait=0&autoplay=1&loop=1&autopause=0&color=fdea2e"></iframe>