我正在使用Flowplayer作爲客戶的自定義Intranet,並且使用CKEditor添加頁面的內容。在HTML中無法訪問網站的HEAD),所以我一直在使用內聯CSS語法。未顯示流水遊戲背景圖片
客戶端在點擊播放前請求在播放器區域顯示圖像。只能使用內聯CSS獲取啓動畫面或海報嗎?
<p>Here is a new sample video.</p>
<script src="http://releases.flowplayer.org/js/flowplayer-3.2.12.min.js"></script>
<div id="clip01" style="margin:0px auto; width:500px;height: 300px; text-align:center; background-image:url('http://31.media.tumblr.com/tumblr_lrqfj1ELAQ1qzi2ewo1_500.jpg');"></div>
<script>
$f("clip01", "http://releases.flowplayer.org/swf/flowplayer-3.2.16.swf", {
clip: {
url: 'mp4:vod/demo.flowplayervod/bbb-800.mp4',
scaling: 'fit',
autoPlay: false,
autoBuffering: true,
provider: 'rtmp'
},
plugins: {
rtmp: {
url: "flowplayer.rtmp-3.2.12.swf",
netConnectionUrl: 'rtmp://rtmp01.hddn.com/play'
}
},
canvas: {
backgroundGradient: 'none'
}
});
</script>
沒有到目前爲止,我已經嘗試顯示背景圖片。玩家加載黑色背景。
下面是它發揮小提琴:http://jsfiddle.net/GuVbJ/
這麼簡單...謝謝! – Tony