苹果cms开发中遇到播放器无法全屏,点击全屏按钮无反应解决方法!
找到播放器文件 一般地址为: myurl/static/player/*.js 目录下的播放器文件等!
打开编辑 js 文件:
添加下面代码 allowtransparency="true" allowfullscreen="true"
注意前后"空格"
一段完整的播放器文件代码
MacPlayer.Html = '<iframe width="100%" height="'+MacPlayer.Height+'" src="http://解析地址?url='+MacPlayer.PlayUrl+'" frameborder="0" allowtransparency="true" allowfullscreen="true" border="0" marginwidth="0" marginheight="0" scrolling="no" ></iframe>';
MacPlayer.Show();