Hexo NexT 加入背景图片
Pin Young Lv9

添加如下代码:

给 hexo next 加上背景图片,只需要在 themes\next\source\css \ _custom\custom.styl 文件中

添加几行代码:

1
2
3
4
5
6
7
8
9
10
11
@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