作为个人博客,当然要按照自己的意愿好好装扮一番!接下来通过简单的步骤,帮助大家设置属于自己的博客。

本人新手,如有漏洞,望海涵。如有侵权,请告知立即删除

 

  • 添加自定义背景:

1.点击管理

2.点击相册

 3.添加一个相册,输入标题后点击ADD(描述可以不写)

4.在刚添加的相册中上传要添加的背景图

 5.进入相册点击刚刚上传的图片,跳转到博客的界面,再次点击最下方的查看原图跳转到只有一张刚刚上传的图片的页面,复制上面的网址链接

6.重新进入个人博客首页,点击管理,点击管理 

7.点击设置进入设置界面

8.在下方的页面定制CSS代码区域输入代码。下面链接记得修改!!!

#home h1{
    font-size:45px;
}
body{
background-image: url("第五步复制的链接"); background-position: initial; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-origin: initial; background-clip: initial;
height:100%;
width:100%;
}
#home{
    opacity:0.83;
}
.wall{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

9.返回个人博客首页。背景图设置完成完成!如想要调节清晰度,修改代码#home{opacity:0.83;}中的opacity的值



  • 给设置好的界面添加一个雪花的动态特效

1:按照设置背景图的步骤进入到设置界面

2:在页首Html代码输入框中输入代码

<div id="midground" class="wall"></div>
<div id="foreground" class="wall"></div>
<div id="top" class="wall"></div>

3:在页面定制CSS代码区域输入代码(可以接着设置背景图的代码继续写)

div#midground{
    background: url("https://i.postimg.cc/PP5GtGtM/midground.png");
    z-index: -1;
    -webkit-animation: cc 200s linear infinite;
    -moz-animation: cc 200s linear infinite;
    -o-animation: cc 200s linear infinite;
    animation: cc 200s linear infinite;
}
div#foreground{
    background: url("https://i.postimg.cc/z3jZZD1B/foreground.png");
    z-index: -2;
    -webkit-animation: cc 253s linear infinite;
    -o-animation: cc 253s linear infinite;
    -moz-animation: cc 253s linear infinite;
    animation: cc 253s linear infinite;
}
div#top{
    background: url("https://i.postimg.cc/PP5GtGtM/midground.png");
    z-index: -4;
    -webkit-animation: da 200s linear infinite;
    -o-animation: da 200s linear infinite;
    animation: da 200s linear infinite;

}
@-webkit-keyframes cc {
    from{
        background-position: 0 0;
        transform: translateY(10px);
    }
    to{
        background-position: 600% 0;
    }
}
@-o-keyframes cc {
    from{
        background-position: 0 0;
        transform: translateY(10px);
    }
    to{
        background-position: 600% 0;
    }
}
@-moz-keyframes cc {
    from{
        background-position: 0 0;
        transform: translateY(10px);
    }
    to{
        background-position: 600% 0;
    }
}
@keyframes cc {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 600% 0;
    }
}

@keyframes da {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 600%;
    }
}
@-webkit-keyframes da {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 600%;
    }
}
@-moz-keyframes da {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 600%;
    }
}
@-ms-keyframes da {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 600%;
    }
}

4:返回博客首页,完成!

---未完待续---

02-12 21:23