添加如下代码:
给 hexo next 加上背景图片,只需要在 themesnextsourcecss _customcustom.styl 文件中
添加几行代码:
代码语言:javascript复制@media screen and (min-width:1200px) {
body {
background-image:url(/images/background.jpg);
background-repeat: no-repeat;
background-attachment:fixed;
background-position:50% 50%;
}
#footer a {
color:#eee;
}
}
ok