hexo之Volantis主题美化

具体效果请移步我的博客👉阳光派Plus
更:
1.添加暗黑模式
2.添加鼠标右键功能
3.添加页面预加载功能

7.20 更新
★valine评论区卡片式背景
★添加鼠标样式
★文章首字下沉
★文章末尾版权
★修改页面卡片阴影
6.15 更新
★修改valine表情区域样式
★主页、正文区域文章标题居中
★博客文章链接优化


☀️ 写在前面
本教程适用于Volantis2.6.4及以上的版本,如果版本不同,文件位置可能会有些不同。不过总体不影响。可以查看作者更新文档。当然也不仅局限于Volantis主题,其他主题按照自身的语法格式同样可修改。Volantis主题已升级到3.0版本,有些文件位置与2.X版本有所不同,文中会提出。
本文中涉及到修改.styl后缀的文件时一定要注意格式,不能多一个会少一个空格
●主界面优化
●页面优化
●评论区优化

一、主界面显示
1、设置主页logo

默认显示文字显得有些单调,故选择使用图片logo代替文字显示标题。修改主题配置文件_config.yml中的cover,添加logo属性值。

2、添加小标题动态彩色字体

修改主题配置文件_config.yml中的cover。去除subtitile属性值;在 themes/volantis/layout/_cover中index.ejs文件中添加如下代码(文字部分可修改):

<!-- 封面滚动字体 -->
<div id="binft"></div> 
<script>
    var binft = function (r) {
      function t() {
        return b[Math.floor(Math.random() * b.length)]
      }  
      function e() {
        return String.fromCharCode(94 * Math.random() + 33)
      }
      function n(r) {
        for (var n = document.createDocumentFragment(), i = 0; r > i; i++) {
          var l = document.createElement("span");
          l.textContent = e(), l.style.color = t(), n.appendChild(l)
        }
        return n
      }
      function i() {
        var t = o[c.skillI];
        c.step ? c.step-- : (c.step = g, c.prefixP < l.length ? (c.prefixP >= 0 && (c.text += l[c.prefixP]), c.prefixP++) : "forward" === c.direction ? c.skillP < t.length ? (c.text += t[c.skillP], c.skillP++) : c.delay ? c.delay-- : (c.direction = "backward", c.delay = a) : c.skillP > 0 ? (c.text = c.text.slice(0, -1), c.skillP--) : (c.skillI = (c.skillI + 1) % o.length, c.direction = "forward")), r.textContent = c.text, r.appendChild(n(c.prefixP < l.length ? Math.min(s, s + c.prefixP) : Math.min(s, t.length - c.skillP))), setTimeout(i, d)
      }
      var l = "",
      o = ["山有木兮木有枝,心悦君兮君不知。", "人生若只如初见,何事秋风悲画扇。","十年生死两茫茫,不思量,自难忘。", "曾经沧海难为水,除却巫山不是云。","洛中何郁郁,冠带自相索。","只愿君心似我心,定不负相思意。","愿得一心人,白头不相离。","入我相思门,知我相思苦。"].map(function (r) {
      return r + ""
      }),
      a = 2,
      g = 1,
      s = 5,
      d = 75,
      b = ["rgb(110,64,170)", "rgb(150,61,179)", "rgb(191,60,175)", "rgb(228,65,157)", "rgb(254,75,131)", "rgb(255,94,99)", "rgb(255,120,71)", "rgb(251,150,51)", "rgb(226,183,47)", "rgb(198,214,60)", "rgb(175,240,91)", "rgb(127,246,88)", "rgb(82,246,103)", "rgb(48,239,130)", "rgb(29,223,163)", "rgb(26,199,194)", "rgb(35,171,216)", "rgb(54,140,225)", "rgb(76,110,219)", "rgb(96,84,200)"],
      c = {
        text: "",
        prefixP: -s,
        skillI: 0,
        skillP: 0,
        direction: "forward",
        delay: a,
        step: g
      };
      i()
      };
      binft(document.getElementById('binft'));
  </script>
  <div class='a'>
    <% if (theme.cover.logo) { %>
      <img class='logo' src='<%- url_for(theme.cover.logo) %>'/>
    <% } %>
    <% if (theme.cover.title) { %>
      <p class="title"><%- theme.cover.title ? theme.cover.title : config.title %></p>
    <% } %>
    <% if (theme.cover.subtitle) { %>
      <p class="subtitle"><%- theme.cover.subtitle%></p>
    <% } %>
+     此处添加代码
  </div>

这个滚动字体可以加在任何位置。

3、界面间距

原界面处title,subtitle,searc,menu之间间距感觉有点大,所以调整了一下。在 themes/volantis/source/css/_layout中的cover.styl文件修改margin-top,margin-bottom的值。

.cover-wrapper .cover
  top: 0
  left: 0
  max-width: 100%
  height: 100vh
  display: flex
  flex-wrap: nowrap
  flex-direction: column
  align-items: center
  align-self: center
  align-content: center
  color: $color-site-inner
  padding: $gap
  .cover-body
    div.b
      margin-top: 3vh
      margin-bottom: 8vh

另:在界面中导航栏部分默认第一个会有下划线,如下

去除方法:在themes/volantis/source/css/_layout中cover.styl文件,大概在148行处,删除border-bottom属性

    ul>li>a
      font-size: $fontsize-meta
      padding: 2px
      margin: 4px
      trans()
      color: alpha($color-site-inner, .65)
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
      border-bottom: 2px solid transparent
      i
        margin-right: 4px
      &:hover, &.active, &:active
        color: $color-site-inner
-       border-bottom: 2px solid $color-site-inner(删除此行)

总体效果:

二、页面优化
1、导航栏样式

主要是在原基础上添加了一个渐变背景。

首先在主题配置文件_config.yml中navbar的effext毛玻璃特效(blur)去掉。

style:
  font_smoothing: false # font-smoothing for webkit
  max_width: 1280px # Sum of body width and sidebar width (This limit will be exceeded           when the device width is greater than 2000px, reaching 75% of the total width)
  scrollbar:
    size: 4px
    border: 2px
    color: '#2196f3'
    hover: '#ff5722'
  navbar:
    height: 64px
    width: auto # auto, max
-   effect: [shadow, blur] # [shadow, floatable, blur]
+   effect: [shadow] # [shadow, floatable, blur]

然后在themes\volantis\source\css\_layout\navbar.styl中,大概25行处添加代码

background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
.l_header
  $iconW = 32px
  $iconMargin = 4px
  position: fixed
  z-index: 1000
  top: 0
  width: 100%
  height: $navbar-height
  background: $color-card
+ background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%)
  box-shadow: $boxshadow-card

效果:

附上一个免费的CSS渐变背景样式网站👉CSS背景渐变

2、页面卡片阴影

在主页面中的文章、侧边栏添加一点阴影,并在鼠标悬停时出现阴影。

在themes\volantis\source\css\_layout中main.styl文件,找到.white-box属性,在background下方添加代码:
主页文章:在\themes\volantis\source\css\_layout中main.styl文件,找到.post-wrapper属性

  .post-wrapper
    column-break-inside: avoid
    break-inside: avoid-column
+   box-shadow: 0 1px 20px -6px rgba(0,0,0,0.5)
+   border-radius: 8px
+   transition: box-shadow .5s ease
+   &:hover
+     box-shadow:0px 1px 20px 1px rgba(0,0,0,0.5)

在themes\volantis\source\css\_layout中sidebar.styl文件,找到.widget属性,在display下方添加上面同样的代码。
侧边栏:在themes\volantis\source\css\_layout中sidebar.styl文件,找到.widget属性

.widget
  z-index: 0
  background: $color-card
  margin-top: $gap
  border-radius: $border-card
  width: 100%
  display: none
+ box-shadow: 0 1px 20px -6px rgba(0,0,0,0.5)
+ transition: box-shadow .5s ease
+ &:hover
+   box-shadow:0px 1px 20px 1px rgba(0,0,0,0.5)

注意格式!

3、页面特效

以下特效整理于网上分享的js代码,均在themes\volantis\layout中layout.ejs文件body里面直接引用即可。(不限制于Volantis主题)

a、樱花

<script src="https://cdn.jsdelivr.net/gh/zyoushuo/Blog/hexo/js/sakura.js"></script>
b、鼠标滑动特效

<script src="https://cdn.jsdelivr.net/gh/zyoushuo/Blog/hexo/js/mouse_slide.js"></script>
c、鼠标点击特效

<script src="https://cdn.jsdelivr.net/gh/zyoushuo/Blog/hexo/js/mouse_click.js"></script>
d、鼠标点击爱心特效

<script src="https://cdn.jsdelivr.net/gh/zyoushuo/Blog/hexo/js/clicklove.js"></script>
e、鼠标点击社会主义价值观特效

<script src="https://cdn.jsdelivr.net/gh/zyoushuo/Blog/hexo/js/clicksocialist.js"></script>
4、主页、正文文章标题居中

主页面的文章、文章正文、关于/友链/留言板等自定义页面的标题居中。
文章地址 themes\volantis\source\css_layout\main.styl

  .post-wrapper
    margin-bottom: $gap
    .post
      div.meta
        margin-bottom: $gap
        .title
          font-size: $fontsize-h2
+         text-align: center
      .title
        trans(.1s)
        margin: 0
+       text-align: center
        color: $color-text
5、博客文章链接优化

原本hexo中文章的链接是:year/:month/:day/:title/格式,有时候可能还会有乱码,不好看,所以通过插件修改。

安装插件

npm install hexo-abbrlink --save

此插件跟hexo-asset-image插件有冲突(可以使用本地图片的插件),若使用这个插件,hexo-asset-image插件会失效。

修改配置文件
文件地址 blog/_config.yml

# permalink: :year/:month/:day/:title/
+ permalink: post/:abbrlink.html  //post可以修改
+ abbrlink:
+   alg: crc16
+   rep: hex

最后一键三连。然后链接就会变成post/***.html的格式。

6、添加鼠标样式

下载两个文件(文件一文件二),文件放在\blog\themes\volantis\source\img中,然后在index.styl文件中引用。

*
  box-sizing: border-box
  outline: none
  margin: 0
  padding: 0
+ cursor: url(/img/default.cur),auto
+:link
+ cursor: url(/img/pointer.cur),auto
7、文章首字下沉

设置文章中第一个p标签首字样式,达到下沉的效果。

.article
  underline()
    &:hover
      text-decoration: underline
  .article-entry
+   >p
+     &:first-child::first-letter
+       float: left
+       margin-top: 14px
+       margin-right: 6px
+       color: #555
+       font-size: 42px
+       line-height: 28px
+       font-style: normal
+       font-weight: 400
+       +mobile(){
+         margin-top: 10px
+         margin-right: 4px
+         font-size: 26px
+         line-height: 20px
+       }
8、文章末尾版权

修改默认的文章末尾版权区域样式。
修改样式:

  blockquote
+    background: #efefef     //修改背景颜色
+    border-left: $border-codeblock solid #575757   //修改左边框颜色
    border-radius: $border-codeblock

修改内容:

  copyright:
    class: copyright
    display: [desktop, mobile] # [desktop, mobile]
    blockquote: true
+    permalink: '🔗 本文链接:'
    content:
+     - '📚 本文由<a href="https://www.zyoushuo.cn/">阳光派Plus</a>创作,转载请注明出处'
+     - '🧾 博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议'
+     - permalink

图标来自于📙 Emojipedia — 😃

三、valine评论优化
1、Valine添加博主标签

此部分参考博主HCLonely Blog的文章Valine添加博主标签及评论微信、QQ通知

Volantis主题添加需要修改一点语法格式。

★添加评论QQ头像
★添加博主小伙伴访客标签
★添加浏览器操作系统图标,需 fontawesomeV5 支持
★增加 QQ 邮箱识别
metaplaceholder 可自定义

⑴ 首先引入valine的js代码

https://cdn.jsdelivr.net/gh/HCLonely/Valine@latest/dist/Valine.min.js

本人使用的版本引入valine的js是在主题配置文件_conflg.yml的valine配置中,其他版本要是没有的话就在themes\volantis\layout_partial的scripts.ejs文件中找一下。

(2) 添加valine配置参数

参数类型说明默认实例
tagMetaArray标签要显示的文字博主,小伙伴,访客博主,小伙伴,访客
masterArray/Stringmd5 加密后的博主邮箱.315be36db8ad7b3e3a7bb0839d6fa839
friendsArraymd5 加密后的小伙伴邮箱.315be36db8ad7b3e3a7bb0839d6fa839
metaPlaceholderObjectmeta placeholder 内容.{“nick”:“昵称 / QQ 号”,“mail”:“邮箱 (必填)”}

md5加密需要完整的邮箱地址,例如QQ邮箱就是123456789@qq.com;加密必须是32位小写。
例如我的配置为

comments:
  title: <i class='fas fa-comments'></i> 评论
  subtitle:
  service: valine # valine, minivaline, disqus, gitalk, livere
  valine:
    appId:  ***# your appId
    appKey: ***# your appKey
    js: https://cdn.jsdelivr.net/gh/HCLonely/Valine@latest/dist/Valine.min.js
    path: # All pages use the same path (share the same comments data)
    meta: nick,mail,link # valine comment header info
    requiredFields: ['nick','mail']
    enableQQ: true # Unstable avatar link
    placeholder: 快来评论吧~ # valine comment input placeholder(like: Please leave your footprints )
    avatar: robohash # gravatar style https://valine.js.org/avatar
    pageSize: 10 # comment list page size
    lang: zh-cn
    highlight: true
    visitor: true
    mathJax: false
+   metaPlaceholder:
+     - nick: 阳光派Plus
+     - mail: ***@qq.com
+   tagMeta: 博主,小伙伴,访客
+   master: 
+     - 487f87505f619bf9ea08f26bb34f8118
+   friends: 
+     - 011c2b8a03f490e9aeab5d41a8a0469a
+     - 8fe874d093278833df8b7172113eca32
+     ......

附上一个MD5加密网站👉MD5在线加密

(3) 添加valine渲染文件参数

在themes\volantis\layout_partial中scripts.ejs文件,找到enableValine,在valine.init中添加
(3.0版本文件位置在\themes\volantis\layout_third-party\comments\valine的scripts.ejs文件)

master: master,
friends: friends,
 valine.init({
    el: '#valine_container',
    meta: meta,
    <% if (page.valine && page.valine.path) { %>
      path: "<%= page.valine.path %>",
    <% } else if (theme.comments.valine.path) { %>
      path: "<%= theme.comments.valine.path %>",
    <% } %>
    appId: "<%= theme.comments.valine.appId %>",
    appKey: "<%= theme.comments.valine.appKey %>",
    placeholder: "<%= (page.valine && page.valine.placeholder) ? page.valine.placeholder : theme.comments.valine.placeholder %>",
    pageSize:'<%= theme.comments.valine.pageSize %>',
    avatar:'<%= theme.comments.valine.avatar %>',
    lang:'<%= theme.comments.valine.lang %>',
    visitor: '<%= theme.comments.valine.visitor %>',
    highlight: '<%= theme.comments.valine.highlight %>',
    mathJax: '<%= theme.comments.valine.mathJax %>',
    enableQQ: '<%= theme.comments.valine.enableQQ %>',
    requiredFields: requiredFields,
+   emojiCDN: 'https://cdn.jsdelivr.net/gh/zyoushuo/Blog/emoji/',
    emojiMaps: emojiMaps,
+	master: master,
+	friends: friends,
  })

然后在 var valine = new Valine();下方添加

  var friends = '<%= theme.comments.valine.friends %>'.split(',');
  var master = '<%= theme.comments.valine.master %>'.split(',');
  var valine = new Valine();
+ var friends = '<%= theme.comments.valine.friends %>'.split(',');
+ var master = '<%= theme.comments.valine.master %>'.split(',');
  function emoji(path, idx, ext) {
      return path + "/" + path + "-" + idx + "." + ext;
  }
2、评论添加一言

在themes\volantis\layout\_third-party中的comments.ejs文件,找到enableValine,在</ section>上方添加代码
(3.0版本文件位置在\themes\volantis\layout_third-party\comments\valine的layout.ejs中)

 <!-- valine 添加一言 -->
<script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>
<script type="text/javascript">
     jinrishici.load(function(result) {
     var jrsc_plac =  result.data.content + "\n「" + result.data.origin.title + "」" + result.data.origin.dynasty + " · " + result.data.origin.author
     document.getElementById("veditor").setAttribute("placeholder",jrsc_plac);
      });
 </script>
<% if (enableValine){ %>
  <section id="comments">
     <div id="valine_container" class="valine_thread">
       <i class="fas fa-cog fa-spin fa-fw fa-2x"></i>
     </div>
	 <!-- valine 添加一言 -->
+	<script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>
+       <script type="text/javascript">
+              jinrishici.load(function(result) {
+            var jrsc_plac =  result.data.content + "\n「" + result.data.origin.title + "」" + result.data.origin.dynasty + " · " + result.data.origin.author
+             document.getElementById("veditor").setAttribute("placeholder",jrsc_plac);
+            });
+     </script>
   </section>
<% } %>
3、添加评论背景

在themes\volantis\source\css_third-party中的valine.styl文件,找到vedit,在span标签下方再添加.veditor标签属性。

 .veditor
   background: url(https://cdn.jsdelivr.net/gh/zyoushuo/Blog/images/valinebg.webp) 100% 100% no-repeat

背景可替换。

        .vedit
          .vctrl span
            padding: 0
            margin: 10px
          span
            fill: $color-p
            &.actived
              fill: $color-theme
+		  .veditor
+		    background: url(https://cdn.jsdelivr.net/gh/zyoushuo/Blog/images/valinebg.webp) 100% 100% no-repeat
4、添加自定义表情

目前我使用的版本,在主题配置文件_config.yml的valine配置中,即使引用不同的js,valine的表情还是没有变化,需要修改渲染文件。

在themes\volantis\layout\_partial中的scripts.ejs文件,找到enableValine,在var emojiMaps = {}中即可添加。例如我的配置:
(3.0版本文件位置在\themes\volantis\layout_third-party\comments\valine的scripts.ejs文件)

  var emojiMaps = {
	"doge": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/doge.png",
    "亲亲": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/亲亲.png",
    "偷笑": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/偷笑.png",  
	"再见": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/再见.png",
    "冷漠": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/冷漠.png",
    "发怒": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/发怒.png",
    "发财": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/发财.png",
    "可爱": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/可爱.png",
    .....
    }

这种方法适合对中文表情包,如果不在乎表情包名字的话可以按照作者的语法格式:

  for (var i = 1; i <= 54; i++) {
    emojiMaps['tieba-' + i] = emoji('tieba', i, 'png');
  }
  for (var i = 1; i <= 101; i++) {
    emojiMaps['qq-' + i] = emoji('qq', i, 'gif');
  }
  for (var i = 1; i <= 116; i++) {
    emojiMaps['aru-' + i] = emoji('aru', i, 'gif');
  }
  for (var i = 1; i <= 125; i++) {
    emojiMaps['twemoji-' + i] = emoji('twemoji', i, 'png');
  }
  for (var i = 1; i <= 4; i++) {
    emojiMaps['weibo-' + i] = emoji('weibo', i, 'png');
  }

按照语法格式对表情包进行命名,比较方便。我的配置为:

<% if (enableValine){ %>
  <% if (theme.comments.valine.js) { %>
    <%- js(theme.comments.valine.js) %>
  <% } else { %>
    <%- js(['js/valine.js']) %>
  <% } %>
  <script>
  var GUEST_INFO = ['nick','mail','link'];
  var meta = '<%= theme.comments.valine.meta %>'.split(',').filter(function(item){
    return GUEST_INFO.indexOf(item) > -1
  });
  var REQUIRED_FIELDS = ['nick','mail','link'];
  var requiredFields = '<%= theme.comments.valine.requiredFields %>'.split(',').filter(function(item){
    return REQUIRED_FIELDS.indexOf(item) > -1
  });
  var valine = new Valine();
  function emoji(path, idx, ext) {
      return path + "/" + path + "-" + idx + "." + ext;
  }
  var friends = '<%= theme.comments.valine.friends %>'.split(',');
  var master = '<%= theme.comments.valine.master %>'.split(',');
  var emojiMaps = {
	"doge": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/doge.png",
    "亲亲": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/亲亲.png",
    "偷笑": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/偷笑.png",  
    "冷漠": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/冷漠.png",
    "发怒": "https://cdn.jsdelivr.net/gh/zyoushuo/Blog@master/emoji/bilibili/发怒.png",
             ....
  };
  for (var i = 1; i <= 23; i++) {
    emojiMaps['weibo-' + i] = emoji('weibo', i, 'png');
  }
  for (var i = 1; i <= 23; i++) {
    emojiMaps['tieba-' + i] = emoji('tieba', i, 'png');
  }
  for (var i = 1; i <= 23; i++) {
    emojiMaps['bqb-' + i] = emoji('bqb', i, 'jpg');
  }
  for (var i = 1; i <= 23; i++) {
    emojiMaps['ya-' + i] = emoji('ya', i, 'jpg');
  }
  valine.init({
    el: '#valine_container',
    meta: meta,
    <% if (page.valine && page.valine.path) { %>
      path: "<%= page.valine.path %>",
    <% } else if (theme.comments.valine.path) { %>
      path: "<%= theme.comments.valine.path %>",
    <% } %>
    appId: "<%= theme.comments.valine.appId %>",
    appKey: "<%= theme.comments.valine.appKey %>",
    placeholder: "<%= (page.valine && page.valine.placeholder) ? page.valine.placeholder : theme.comments.valine.placeholder %>",
    pageSize:'<%= theme.comments.valine.pageSize %>',
    avatar:'<%= theme.comments.valine.avatar %>',
    lang:'<%= theme.comments.valine.lang %>',
    visitor: '<%= theme.comments.valine.visitor %>',
    highlight: '<%= theme.comments.valine.highlight %>',
    mathJax: '<%= theme.comments.valine.mathJax %>',
    enableQQ: '<%= theme.comments.valine.enableQQ %>',
    requiredFields: requiredFields,
    emojiCDN: 'https://cdn.jsdelivr.net/gh/zyoushuo/Blog/emoji/',
    emojiMaps: emojiMaps,
	master: master,
	friends: friends,
  })
  </script>
<% } %>

此方法要在emojiCDN处添加地址。

5、修改表情区域样式

修改表情大小、背景颜色。在themes\volantis\source\css_third-party中的valine.styl文件

        .vemojis,.vpreview
+         background: #fff  //背景区域颜色
          border-radius: $border-codeblock
          padding: $gap * 0.5
+         border: 1px solid #f6f6f6 //边框
          scrollbar()
          .vemoji
+           max-height: 40px   //表情大小
+           max-width: 100px
6、评论区卡片式背景

具体样式就是给每一条评论加个背景边框。

      .vcards
+       .vcard
+         box-shadow: 0 0 4px 1px rgba(0, 0, 0, .12)
+         padding: 15px 20px 0 20px
+         margin-bottom: 10px
+         border-radius: 8px
        .vquote
          border-left: none
        .vh
          border-bottom: 1px dashed alpha($color-text, .1)
+         .vcard
+           box-shadow: none

🌻最后
虽然是对Volantis主题的美化,但是其他主题同样适用。学会使用F12,找准位置,然后找到对应的文件,按照语法格式修改即可。多去参考参考其他博主的网站。
目前对Volantis主题就修改了怎么多,若再有修改,日后添加。
注意事项
☆如果修改了样式发现没有变化,请使用hexo cl清理文件缓存、Ctrl+F5强制刷新、Ctrl+shift+delete清理浏览器缓存。(尤其是最后一个)

☆有时候在修改styl文件会出现错误,比如这样:

可以发现是格式不正确,请删除多余的空格。
参考文章:

Valine-1.4.4新版本尝鲜+个性制定(表情包、qq头像、UI样式

Valine添加博主标签及评论微信、QQ通知

halo 博客深度定制与美化教程

评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值