找到 Butterfly 主题文件的 inject:处。

1
2
3
inject:
head:
bottom:

在 bottom 处插入以下代码。

1
2
3
4
inject:
head:
bottom:
- <script> let backimg =["url(/images/draw.JPG)","url(/images/life.jpg)","url(/images/idea.jpg)","url(/images/study.jpg)"];let index =Math.ceil(Math.random() * (backimg.length-1))-1;document.getElementById("web_bg").style.backgroundImage = backimg[index]</script>

在 backimg 数组里替换自己想要的图片链接。

1
backimg =["url(/images/draw.JPG)","url(/images/life.jpg)","url(/images/idea.jpg)","url(/images/study.jpg)"]

完成。