123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <div id="bigScreen-container">
- <bigScreenHeader />
- <bigScreenView />
- </div>
- </template>
- <script>
- import bigScreenHeader from '@/views/bigScreen/components/Header.vue'
- import bigScreenView from '@/views/bigScreen/home'
- export default {
- components: {
- bigScreenHeader,
- bigScreenView
- }
- }
- </script>
- <style lang="scss" scoped>
- @font-face{
- font-family: 'YouSheBiaoTiHei';
- src: url('~@/views/bigScreen/assets/font/YouSheBiaoTiHei.ttf');
- }
- #bigScreen-container{
- height:100vh;
- background-image: url(~@/views/bigScreen/assets/bg.png);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- box-sizing: border-box;
- overflow: hidden;
- ::-webkit-scrollbar {
- height: 4px;
- width: 4px;
- }
- ::-webkit-scrollbar-corner {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- width: 5px !important;
- height: 5px !important;
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 2px #115BE6;
- background: #115BE6;
- }
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 2px #03399F;
- border-radius: 10px;
- background: #03399F;
- }
- }
- </style>
|