⚡ 使用webp背景图压缩资源包大小
Before Width: | Height: | Size: 9.1 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg1.webp
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg2.webp
Normal file
After Width: | Height: | Size: 397 KiB |
Before Width: | Height: | Size: 5.1 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg3.webp
Normal file
After Width: | Height: | Size: 433 KiB |
Before Width: | Height: | Size: 5.4 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg4.webp
Normal file
After Width: | Height: | Size: 412 KiB |
Before Width: | Height: | Size: 5.4 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg5.webp
Normal file
After Width: | Height: | Size: 314 KiB |
Before Width: | Height: | Size: 3.8 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg6.webp
Normal file
After Width: | Height: | Size: 410 KiB |
Before Width: | Height: | Size: 2.9 MiB |
BIN
liteyuki/resources/vanilla_resource/templates/img/bg7.webp
Normal file
After Width: | Height: | Size: 270 KiB |
Before Width: | Height: | Size: 2.6 MiB |
@ -1,11 +1,11 @@
|
||||
const bgs = [
|
||||
"bg1.png",
|
||||
"bg3.png",
|
||||
"bg4.png",
|
||||
"bg5.png",
|
||||
"bg6.png",
|
||||
"bg7.png",
|
||||
"bg9.png",
|
||||
"bg1.webp",
|
||||
"bg2.webp",
|
||||
"bg3.webp",
|
||||
"bg4.webp",
|
||||
"bg5.webp",
|
||||
"bg6.webp",
|
||||
"bg7.webp",
|
||||
]
|
||||
// 随机选择背景图片
|
||||
document.body.style.backgroundImage = `url(./img/${bgs[Math.floor(Math.random() * bgs.length)]})`;
|
||||
|