<param
name="flashVars"
value="config={'playlist':['screenshot.jpg',
{'url':'video.mp4','autoPlay':true}]}"
/>
配置键=值,我应该隐藏流媒体中的控件吗?
答案 0 :(得分:2)
这对我有用:
<param name="flashVars" value="config={'plugins': {'controls': null}, 'playlist':['screenshot.jpg', {'url':'video.mp4','autoPlay':true,'control':null}]}" />
&#39; control&#39;:null应该在config的插件属性下
答案 1 :(得分:0)
根据http://flash.flowplayer.org/plugins/flash/controlbar.html
简单地说:'control':null
所以:
<param
name="flashVars"
value="config={'playlist':['screenshot.jpg',
{'url':'video.mp4','autoPlay':true,'control':null}]}"
/>
答案 2 :(得分:0)
$f().onLoad(function(){
$f().getControls().hide();
})