tmp-upload #4

Merged
admin merged 33 commits from tmp-upload into main 2025-11-29 02:30:38 +00:00
2 changed files with 25 additions and 7 deletions
Showing only changes of commit c81516fff1 - Show all commits

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

After

Width:  |  Height:  |  Size: 596 KiB

View File

@@ -5,6 +5,13 @@
box-sizing: border-box; box-sizing: border-box;
} }
/* 图片预加载 - 提升移动端加载性能 */
body::before {
content: "";
display: none;
background-image: url(/battle-background.jpg);
}
/* 根元素样式 */ /* 根元素样式 */
:root { :root {
/* 王者荣耀风格字体 - 使用系统默认字体但设置更多样化 */ /* 王者荣耀风格字体 - 使用系统默认字体但设置更多样化 */
@@ -528,14 +535,15 @@ table {
font-size: 14px; font-size: 14px;
} }
/* 移动端body不设置任何背景相关属性 */ /* 移动端背景图片优化:保留图片但优化加载性能 */
html, body { html, body {
background: none !important; background-color: var(--dark-color);
background-image: none !important; background-image: url(/battle-background.jpg);
background-color: var(--dark-color) !important; background-size: cover;
background-size: auto !important; background-position: center;
background-position: static !important; background-repeat: no-repeat;
background-repeat: repeat !important; background-attachment: scroll;
/* 预加载优化 */
background-attachment: scroll !important; background-attachment: scroll !important;
} }
@@ -548,6 +556,16 @@ table {
:root { :root {
font-size: 13px; font-size: 13px;
} }
/* 小屏幕手机背景图片优化 */
html, body {
background-color: var(--dark-color);
background-image: url(/battle-background.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: scroll;
}
.content-container { .content-container {
padding: 0; padding: 0;