我正在使用 vimeowrap 循环播放视频播放列表。我希望 vimeowrap 输出的 iframe 的宽度和高度为“100%”或“”什么都没有。要么会工作。
Vimeo 包装: http: //luwes.co/labs/vimeo-wrap/
我的测试页面:http ://www.a3network.com/vimeo_wrap.html
这是我正在测试的内容。
<script>
vimeowrap('player').setup({
urls: [
'https://vimeo.com/16437160',
'https://vimeo.com/16439781',
'https://vimeo.com/16449483',
'https://vimeo.com/16449643',
'https://vimeo.com/16449980',
'https://vimeo.com/16450347'
],
width: '100%',
height: '100%'
});
</script>
我得到这个输出:
<iframe width="100" height="100" frameborder="0" allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen="" src="http://player.vimeo.com/video/16437160?api=1&player_id=player_0" id="player_0" style="position: absolute; display: block;"></iframe>
我需要这个输出:
<iframe width="100%" height="100%" frameborder="0" allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen="" src="http://player.vimeo.com/video/16437160?api=1&player_id=player_0" id="player_0" style="position: absolute; display: block;"></iframe>
任何帮助、建议、线索、线索、提示都非常受欢迎和非常感谢。