乐于分享
好东西不私藏

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

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

         
天天看网站的一张背景图,是不是有点腻了?
于是我增加了一个切换背景的功能。
该功能可以从unsplash上面随机获取前10000张图片,作为背景图。
// 封装:获取随机图并转为 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 '';    }}
 而且是设置的高清2K的分辨率图片。
如果你发现这个背景还不错,想要保存作为壁纸,那你可以选择查看大图,或者直接下载。

本文来源:听风入画


文案:橘子orange
图片:橘子orange
视频:听风入画
©橘子orange