forked from bot/app
📝 [docs]: 新增在线展示
This commit is contained in:
parent
83a2d36209
commit
499caca7e3
@ -9,6 +9,9 @@
|
|||||||
|
|
||||||
--vp-c-gray-1: #eee;
|
--vp-c-gray-1: #eee;
|
||||||
--vp-c-gray-2: #aaa;
|
--vp-c-gray-2: #aaa;
|
||||||
|
--border-radius-1: 10px;
|
||||||
|
--border-radius-2: 20px;
|
||||||
|
--border-radius-3: 40px;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -26,13 +26,13 @@ async function updateData() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
updateData();
|
updateData();
|
||||||
|
|
||||||
setInterval(updateData, 10000);
|
setInterval(updateData, 10000);
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="online-status-bar">
|
<div class="stats-bar">
|
||||||
|
<div class="stats-info">
|
||||||
<div id="total" class="section">
|
<div id="total" class="section">
|
||||||
<div class="line">
|
<div class="line">
|
||||||
<span class=dot style="background-color: #00a6ff"></span>
|
<span class=dot style="background-color: #00a6ff"></span>
|
||||||
@ -48,20 +48,40 @@ setInterval(updateData, 10000);
|
|||||||
<div class="number">{{ online }}</div>
|
<div class="number">{{ online }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="starmap">
|
||||||
|
<iframe src="https://starmap.liteyuki.icu/" width="100%" height="300px"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.online-status-bar {
|
|
||||||
|
.stats-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: space-between;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin: 30px 10px 10px;
|
margin: 30px 10px 10px 10px;
|
||||||
border-radius: 20px;
|
border-radius: var(--border-radius-2);
|
||||||
background-color: var(--vp-c-gray-1);
|
background-color: var(--vp-c-gray-1);
|
||||||
|
flex-direction: column; /* 默认纵向布局 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.stats-info {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.section:not(:last-child) {
|
.section:not(:last-child) {
|
||||||
margin-right: 100px;
|
margin-right: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.line {
|
.line {
|
||||||
@ -76,9 +96,54 @@ setInterval(updateData, 10000);
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.number {
|
.number {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.starmap {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--border-radius-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.starmap iframe {
|
||||||
|
position: absolute;
|
||||||
|
top: -150px; /* 根据需要调整裁剪位置 */
|
||||||
|
left: -40px; /* 根据需要调整裁剪位置 */;
|
||||||
|
width: calc(100% + 80px); /* 根据需要调整裁剪宽度 */
|
||||||
|
height: calc(100% + 300px); /* 根据需要调整裁剪高度 */
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
/* PC模式下的样式 */
|
||||||
|
.stats-bar {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stats-info {
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.starmap {
|
||||||
|
width: 60%;
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.starmap iframe {
|
||||||
|
position: absolute;
|
||||||
|
top: -130px; /* 根据需要调整裁剪位置 */
|
||||||
|
left: -60px; /* 根据需要调整裁剪位置 */;
|
||||||
|
width: calc(100% + 120px); /* 根据需要调整裁剪宽度 */
|
||||||
|
height: calc(100% + 280px); /* 根据需要调整裁剪高度 */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
@ -4,7 +4,7 @@
|
|||||||
"vitepress-sidebar": "^1.25.0"
|
"vitepress-sidebar": "^1.25.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs:dev": "vitepress dev",
|
"docs:dev": "vitepress dev --host",
|
||||||
"docs:build": "vitepress build",
|
"docs:build": "vitepress build",
|
||||||
"docs:preview": "vitepress preview"
|
"docs:preview": "vitepress preview"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user