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