如何隐藏JWPlayer 6 播放按钮?

How to hide JWPlayer 6 play button?

我之前使用的是 JWPlayer 5,但现在正在转移到 JWPlayer 6。

<script>
    jwplayer('myElement2').setup({
        file: 'intro.mp4',
        image: 'intro.png',
        skin: 'stormtrooper',
        icons: 'false' // this doesn't work on JWPlayer 6
    });
    jwplayer('myElement2').getPlugin("display").hide();
</script>

在 JWPlayer 5 上是 icons: 'false' 并且没有播放按钮。

最好的方法是创建自己的皮肤,并将该元素排除在定义之外。但我认为你也可以做一些蛮力 CSS:

<style>
.jwdisplayIcon {
    display: none !important;
}
</style>

点击视频帧仍会开始播放。

如果您使用的是 Flash,则需要制作自定义皮肤才能执行此操作。

http://support.jwplayer.com/customer/portal/articles/1412123-building-jw-player-skins

如果您使用的是HTML5,上面的答案就足够了。