Hexo NexT 加入背景图片

2022-03-25 14:09:15 浏览数 (1)

添加如下代码:

给 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

0 人点赞