mirror of
https://github.com/Wcowin/Mkdocs-Wcowin.git
synced 2025-07-20 17:06:34 +00:00
40 lines
1003 B
CSS
40 lines
1003 B
CSS
/* 播放器显示暂停图标start */
|
|
.vjs-paused .vjs-big-play-button,
|
|
.vjs-paused.vjs-has-started .vjs-big-play-button {
|
|
display: block;
|
|
}
|
|
/* 播放器显示暂停图标end */
|
|
|
|
/* 暂停图标显示为圆形start */
|
|
.video-js .vjs-big-play-button{
|
|
font-size: 2.5em;
|
|
line-height: 2.3em;
|
|
height: 2.5em;
|
|
width: 2.5em;
|
|
-webkit-border-radius: 2.5em;
|
|
-moz-border-radius: 2.5em;
|
|
border-radius: 2.5em;
|
|
background-color: #73859f;
|
|
background-color: rgba(115,133,159,.5);
|
|
border-width: 0.15em;
|
|
margin-top: -1.25em;
|
|
margin-left: -1.75em;
|
|
}
|
|
/* 中间的播放箭头 */
|
|
.vjs-big-play-button .vjs-icon-placeholder {
|
|
font-size: 1.63em;
|
|
}
|
|
/* 加载圆圈 */
|
|
.vjs-loading-spinner {
|
|
font-size: 2.5em;
|
|
width: 2em;
|
|
height: 2em;
|
|
border-radius: 1em;
|
|
margin-top: -1em;
|
|
margin-left: -1.5em;
|
|
}
|
|
/* 暂停图标显示为圆形end */
|
|
|
|
/* 设置播放时间 */
|
|
.video-js .vjs-time-control{display:block;}
|
|
.video-js .vjs-remaining-time{display: none;} |