我正在使用JWplayer 7.4.3版本。我花了很多时间让视频背景透明但没有运气。有人可以帮忙吗?
jwplayer(_videoID).setup({ file: _vFile, image: _vImage, width: '100%', aspectratio: '16:9', stretching: 'fill', wmode: "transparent", (I tried this) skin: { name:"vapor", background:"transparent !important" (I tried this) } })
答案 0 :(得分:0)
您将在CSS文件中或标题中的<style></style>
标记内设置此项,而不是JS播放器设置。 “背景”实际上影响了许多元素(.jw-dock-button,.jw-icon-display-container,.jw-controlbar,.jw-menu,.jw-slider-volume),所以你可能想成为更具体的是你在呼唤什么。假设你想要一个透明的控制栏,你可以使用
.jw-controlbar {
background-color: rgba(0,0,0,0) !important;
}
有关详细信息,请参阅CSS Skinning Reference和DOM Visual Structure Reference中的“颜色”。