css 修改Soliloquy播放/暂停图标。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 修改Soliloquy播放/暂停图标。相关的知识,希望对你有一定的参考价值。
/* Styles the Play button */
.soliloquy-controls-auto .soliloquy-controls-auto-item a.soliloquy-start {
width: 32px !important;
height: 32px !important;
background-color: rgba(0,0,0,0.7) !important;
background-image: url('YOUR_IMAGE_URL') !important;
background-size: 9px 14px !important;
}
/* Styles the Pause button */
.soliloquy-controls-auto .soliloquy-controls-auto-item a.soliloquy-stop {
width: 32px !important;
height: 32px !important;
background-color: rgba(0,0,0,0.7) !important;
background-image: url('YOUR_IMAGE_URL') !important;
background-size: 9px 14px !important;
}
/* Positions the play/pause button within the slider */
.soliloquy-container .soliloquy-controls-auto-item {
width: 32px !important;
height: 32px !important;
position: absolute !important;
bottom: 10px !important;
right: 10px !important;
}
以上是关于css 修改Soliloquy播放/暂停图标。的主要内容,如果未能解决你的问题,请参考以下文章
css 修改Soliloquy Lightbox风格
css soliloquy滑块的居中标题
css 添加覆盖Soliloquy滑块一部分的图像
视频播放/暂停图标的切换
为啥JS中没有显示暂停图标
如何一键暂停/播放多个 MediaPlayer 对象?