准备添加开屏

This commit is contained in:
zhcnyuyang 2025-05-17 19:40:52 +08:00
parent 80c3ac29f5
commit 376b129d28
6 changed files with 34 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="zh">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">

BIN
public/HomepageRes/NewK.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 794 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -25,7 +25,7 @@ import Partners from './Tools/Partners.vue'
</span> </span>
</div> </div>
<div id="bigKlogo"> <div id="bigKlogo">
<img src="/HomepageRes/homepageK.png" width="100%" height="100%"/> <img src="/HomepageRes/NewK.png" width="100%" height="100%"/>
</div> </div>
</div> </div>
<div class="pageroot" id="fwfw" style="background-color: black;"> <div class="pageroot" id="fwfw" style="background-color: black;">
@ -257,7 +257,7 @@ export default {
@include media-breakpoint-between(xs, md) { @include media-breakpoint-between(xs, md) {
margin-left: 32px; margin-left: 32px;
width: 161.8px; width: 326px;
} }
@include media-breakpoint-between(md, xl) { @include media-breakpoint-between(md, xl) {

14
src/start.js Normal file
View File

@ -0,0 +1,14 @@
import { createApp } from 'vue'
import Start from './Start.vue'
import router from './startRouter.js'
import axios from 'axios'
// 引入Bootstrap CSS
import 'bootstrap/dist/css/bootstrap.min.css'
// 引入Bootstrap JSbundle版本
import 'bootstrap/dist/js/bootstrap.bundle.min.js'
const app = createApp(Start)
axios.defaults.baseURL = 'https://cms.yangprivate.site'
app.config.globalProperties.$axios = axios
app.use(router).mount('#start')

View File

@ -1,10 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <!DOCTYPE html>
<html lang="zh">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Title</title> <link rel="icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/iFavicon.png">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KDesign - 欢迎光临</title>
</head> </head>
<style type="text/css">
#start
{
display: flex;
flex-direction: column;
min-height: 100vh;
}
</style>
<body> <body>
<div id="start"></div>
<script type="module" src="/src/start.js"></script>
</body> </body>
</html> </html>