首先我选择换一个背景,因为简单(手动滑稽)。
我通过我经过换背景的愉快艰辛历程总结一下换背景的一些经验。
找到自己喜欢的图片,把它放进文件myblog\themes\next\source\images(博客主题中的文件夹)
然后去找到myblog\themes\next\source\css\_custom中的custom.styl
在里面填入代码

body{
    background:url(https://cdn.jsdelivr.net/gh/drew233/cdn/(你选择要作为背景的图片).webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:center;
}

然后重新载入一次就可以看到自己的背景了。浅色背景还好,如果背景颜色较深,需要更改透明度什么的,我继续学习!!!