0%

Next设置背景与文本框的透明度

设置Hexo背景

找到next主题下面的source/css/_schemes/Mist/index.styl,添加如下代码:

1
2
3
4
5
6
7
body { 
background:url(/uploads/1.png);
background-repeat: no-repeat;
background-attachment:fixed; //不重复
background-size: cover; //填充
background-position:100% 100%;
}

设置文本框的透明度

可以再添加如下代码:

1
2
3
.post-block {
background: rgba(255,255,255,.85) none repeat scroll !important;
}

rgba的第四个参数是控制透明度,其余控制文章背景的颜色。

其余美化参考这篇博客