我正在尝试在我的视频脚本中激活wmode。 我不知道怎么做。
以下是我的代码。
<script type="text/javascript">
TSC.playerConfiguration.setFlashPlayerSwf("demo_controller.swf");
TSC.playerConfiguration.setMediaSrc("demo.mp4");
TSC.playerConfiguration.setXMPSrc("demo_config.xml");
TSC.playerConfiguration.setAutoHideControls(true);
TSC.playerConfiguration.setBackgroundColor("#000000");
TSC.playerConfiguration.setCaptionsEnabled(false);
TSC.playerConfiguration.setSidebarEnabled(false);
TSC.playerConfiguration.setAutoPlayMedia(false);
TSC.playerConfiguration.setPosterImageSrc("demo_First_Frame.png");
TSC.playerConfiguration.setIsSearchable(true);
TSC.playerConfiguration.setEndActionType("stop");
TSC.playerConfiguration.setEndActionParam("true");
TSC.playerConfiguration.setAllowRewind(-1);
TSC.localizationStrings.setLanguage(TSC.languageCodes.ENGLISH);
$(document).ready(function (e) {
TSC.mediaPlayer.init("#tscVideoContent");
});
</script>
我试过这个TSC.playerConfiguration.setEndActionParam(“wmode”:“transparent”);
它不起作用。 谢谢
答案 0 :(得分:0)
我得到的解决方案只是在player-min.js中做了一些改变: -
co.wmode = "direct";
Just go to player-min.js and replace "direct" with "transparent"
It will work .
co.wmode = "transparent";
谢谢。