| | |
| | | <template> |
| | | <div class="screen-container"> |
| | | <screen-title></screen-title> |
| | | <!-- <screen-title></screen-title> --> |
| | | <v-scale-screen width="1920" height="1080" :autoScale="true" :delay="0" class="screen"> |
| | | <screen-wrapper></screen-wrapper> |
| | | <!-- <screen-wrapper></screen-wrapper> --> |
| | | <NewPage></NewPage> |
| | | </v-scale-screen> |
| | | </div> |
| | | |
| | |
| | | <script> |
| | | import ScreenTitle from './components/screen-title/index.vue'; |
| | | import ScreenWrapper from './components/screen-wrapper/index.vue'; |
| | | |
| | | import NewPage from './newPage/index.vue' |
| | | |
| | | export default { |
| | | name: 'App', |
| | | components: { |
| | | ScreenTitle, |
| | | ScreenWrapper, |
| | | NewPage, |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | -webkit-user-select: none; |
| | | } |
| | | .screen { |
| | | background: url('../../assets/images/screen/pageBg2.png') !important; |
| | | background-size: cover !important; |
| | | background-repeat: no-repeat !important; |
| | | background-position: center center !important; |
| | | background-color: #033c76 !important; |
| | | //background: url('../../assets/images/screen/pageBg1.jpg') !important; |
| | | //background-size: cover !important; |
| | | //background-repeat: no-repeat !important; |
| | | //background-position: center center !important; |
| | | } |
| | | |
| | | </style> |
| | | </style> |