0%

Hexo+Mext设置主页文章添加边框阴影效果

设置主页文章添加边框阴影效果

  1. 打开主题文件夹下的post:

    MyBlog\themes\next\source\css\\ _common\components\post\post.styl文件

  2. ctrl+F查找.use-motion{},修改后的内容如下方所示

1
2
3
4
5
6
7
8
9
10
11
.use-motion {
if (hexo-config('motion.transition.post_block')) {
.post-block, .pagination, .comments {
opacity: 0;
margin-top: 3px;
margin-bottom: 30px;
padding: 25px;
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, .5);
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, .5);
}
}
  1. 重启

    1
    2
    3
    4
    5
    6
    7
    hexo+clean

    hexo+g

    hexo+d