feat: add bg image and random select bg
This commit is contained in:
parent
564f2c13e6
commit
1d47d34518
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
BIN
img/bg/2.jpg
Normal file
BIN
img/bg/2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
@ -2,11 +2,19 @@ let currentLang = "zh";
|
|||||||
let data, i18n;
|
let data, i18n;
|
||||||
|
|
||||||
document.addEventListener("DOMContentLoaded", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
setRandomBackground();
|
||||||
loadData("data.json", loadBlockchainOptions);
|
loadData("data.json", loadBlockchainOptions);
|
||||||
changeLanguage(currentLang);
|
changeLanguage(currentLang);
|
||||||
updateCopyrightYear();
|
updateCopyrightYear();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function setRandomBackground() {
|
||||||
|
const images = ['1.jpg', '2.jpg'];
|
||||||
|
const randomIndex = Math.floor(Math.random() * images.length);
|
||||||
|
const selectedImage = images[randomIndex];
|
||||||
|
document.body.style.backgroundImage = `url('img/bg/${selectedImage}')`;
|
||||||
|
}
|
||||||
|
|
||||||
function updateCopyrightYear() {
|
function updateCopyrightYear() {
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
let copyrightText;
|
let copyrightText;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
font-family: Microsoft YaHei;
|
font-family: Microsoft YaHei;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background-image: url("img/bg.jpg");
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user