whychdw
2021-04-19 650910fab2fbae19bc3038973df3c3b9e806f9ea
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
<template>
    <div class="video-header">
        <span class="video-header-title">视频监控系统平台</span>
    </div>
</template>
 
<script>
export default {
    name: "video-header",
}
</script>
 
<style scoped>
.video-header {
    background-image: url("../assets/images/video-header-bg.png");
    background-size: 100% 100%;
    height: 60px;
    text-align: center;
}
.video-header-title {
    letter-spacing: 8px;
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(#88ebfe 50%, #227fff);
    -webkit-background-clip: text;
    color: transparent;
}
</style>