App.vue
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "App"
};
</script>
<style rel="stylesheet/less" lang="less">
.mint-toast-text {
font-size: 30px !important;
}
.mint-indicator-text {
font-size: 30px !important;
}
// 设置播放器的背景颜色
.video-js {
background-color: transparent !important;
.vjs-poster {
background-color: transparent !important;
border: solid 1px #ffcd6d;
border-radius: 16px;
}
}
.video-js .vjs-progress-control .vjs-progress-holder {
outline: none;
/*background-color:transparent;*/
}
/*播放按钮*/
.video-js .vjs-big-play-button {
background-color: rgba(43, 51, 63, .1);
width: 132px !important;
height: 132px !important;
line-height: 132px !important;
font-size: 90px !important;
}
/*底部播放控件*/
.video-js .vjs-control-bar{
border-bottom-right-radius:16px;
border-bottom-left-radius:16px;
}
.video-js .vjs-tech {
border-radius: 16px;
/*border-top:solid 2px transparent!important ;*/
/*border-color: transparent!important;*/
/*border-style: solid;*/
/*border-width: 1px;*/
box-sizing: border-box;
}
/*.video-js .vjs-slider{*/
/*background-color: #73859f;*/
/*}*/
</style>