教程
进入网站后台 主题设置->全局&功能->自定义代码 将下方代码粘贴进去即可 如图所示
代码
/***日间主题模式***/
body {
background-image: url("https://aaaaaa.com/aaa.jpg");/**这里改为你自己的图片地址**/
background-position-x: center;
background-position-y: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
/***夜间主题模式***/
.dark-theme {
background-position-x: center;
background-position-y: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-image: url("https://aaaaaa.com/bbb.jpg");/**这里改为你自己的图片地址**/
background-size: cover;
}
没有回复内容