🌐 使用方法
在您的网站中使用这些壁纸作为背景:
方法一:固定编号
body {
background-image: url('https://bingpic.52xxzl.top/images/1.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
方法二:随机选择
var randomNum = Math.floor(Math.random() * 10) + 1;
document.body.style.backgroundImage =
"url('https://bingpic.52xxzl.top/images/" + randomNum + ".jpg')";
document.body.style.backgroundSize = "cover";
document.body.style.backgroundPosition = "center";
方法三:按日期轮换
var today = new Date().getDate();
var wallpaperNum = (today % 10) + 1;
var bgUrl = 'https://bingpic.52xxzl.top/images/' + wallpaperNum + '.jpg';
document.body.style.backgroundImage = 'url(' + bgUrl + ')';