How to pass wmode = transparent parameter to Flowplayer:
Flowplayer expects three arguments in an embed call.
1) Container ID
2) Parameters. (string or object)
3) Configuration (plugins or appearance settings)
More details: http://flowplayer.org/documentation/api/flowplayer.html
wmode 2- . , Flowplayer , URL- Flash. , JSON.
wmode:
$f("video-player", "flowplayer.swf" {
plugins: {
controls: {
buttonOffColor: "#4523d3",
borderRadius: "0",
sliderColor: "#4523d3"
}
}
});
wmode:
$f("video-player", {
src:"flowplayer.swf",
wmode:"transparent"
}, {
plugins: {
controls: {
buttonOffColor: "#4523d3",
borderRadius: "0",
sliderColor: "#4523d3"
}
}
});