Hexo Next8.x美化配置记录
前言 网上收集的方法做一个整合贴。 ...
前言 网上收集的方法做一个整合贴。 ...
1.正文 在 NexT 主题下的 scripts 目录中创建 events.js var exec = require('child_process').exec; hexo.on('new', function(data){ exec('open -a MacDown ' + data.path); }); 在 NexT 主题下的 scripts 目录中创建 codeblock.js var attributes = [ 'autocomplete="off"', 'autocorrect="off"', 'autocapitalize="off"', 'spellcheck="false"', 'contenteditable="true"' ] var attributesStr = attributes.join(' ') hexo.extend.filter.register('after_post_render', function (data) { while (/<figure class="highlight ([a-zA-Z]+)">.*?<\/figure>/.test(data.content)) { data.content = data.content.replace(/<figure class="highlight ([a-zA-Z]+)">.*?<\/figure>/, function () { var language = RegExp.$1 || 'plain' var lastMatch = RegExp.lastMatch lastMatch = lastMatch.replace(/<figure class="highlight /, '<figure class="iseeu highlight /') return '<div class="highlight-wrap"' + attributesStr + 'data-rel="' + language.toUpperCase() + '">' + lastMatch + '</div>' }) } return data }) 在 themes/next/source/css/_common/components/highlight/highlight.styl 的基础上调整了下样式,包裹上一层类 mac Panel 的效果。 ==注: 这里不用删除原来 highlight.styl 里边的内容,只需要在末尾添加下面代码即可== .highlight-wrap[data-rel] { position: relative; overflow: hidden; border-radius: 5px; box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.4); margin: 35px 0; ::-webkit-scrollbar { height: 10px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); } &::before { color: white; content: attr(data-rel); height: 38px; line-height: 38px; background: #21252b; color: #fff; font-size: 16px; position: absolute; top: 0; left: 0; width: 100%; font-family: "Source Sans Pro", sans-serif; font-weight: bold; padding: 0px 80px; text-indent: 15px; float: left; } &::after { content: " "; position: absolute; -webkit-border-radius: 50%; border-radius: 50%; background: #fc625d; width: 12px; height: 12px; top: 0; left: 20px; margin-top: 13px; -webkit-box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b; box-shadow: 20px 0px #fdbc40, 40px 0px #35cd4b; z-index: 3; } } 在 highlight.styl 中找到如下部分代码,修改 margin 为 36px 0 0 0: ...
在 GithubPages 上搭建 Hexo 并配置 NexT 主题 啰里啰唆 记录一下自己搭建 blog 的过程,之前在 vps 上配置过 word press,但是一直也没更新,而且好的 vps 很贵维护成本也很高,索性干脆不用了,就尝试一下使用 hexo 在 github 上搭建 blog,效果还不错,总共也就历时两天。网上类似的教程也很多,这里总结记录一下,方便以后开新坑 首先安装 Node.js 和 Git for Windows [Node.js 官网](Node.js (nodejs.org)),[Git for windows 官网](Git (git-scm.com)),Node.js 建议安装 LTS 长期支持版,支持周期更长且更稳定 Node.js:点击第一个绿色的按钮下载 Node.js,版本不需要和图示一致,直接下载最新版即可。 Git:点击网页左侧小电脑当中的 Download for windows,直接下载最新版即可无需与图示中版本一致。 下载完成后按照默认安装设置安装即可。 在 GitHub 上创建一个仓库 首先,需要一个 GitHub 账号。打开 GitHub 官网点击左上角的 sign in 就能注册了,不复述了很简单。进行这个过程可能需要科学上网,具体自行百度。 创建一个 Github 仓库 点击左上角头像,在弹出的下拉菜单中选择 Your repositories,待页面加载完毕后点击左上角绿色的new创建一个仓库。 注意:仓库名务必是**==你的用户名.github.io==**,比如上面我的用户名是 ivy-lun,那么仓库名就是 ivy-lun.github.io,其他的保持默认即可,点击绿色按钮 Create repositories 即可创建一个仓库。 ...