网站增加切换背景以及下载背景图的功能!




// 封装:获取随机图并转为 Blob URLconst fetchRandomBlobUrl = async () => {const randomId = Math.floor(Math.random() * 10000);const newImgUrl = `https://unsplash.it/2560/1440?random=${randomId}`;try {const response = await fetch(newImgUrl);const blob = await response.blob();return URL.createObjectURL(blob);} catch (error) {console.error("加载背景图失败:", error);return '';}}



▌本文来源:听风入画
夜雨聆风