前言
美化之前
美化的时候需要修改网站的源文件、添加样式、js之类的,需要一点基础,可以参考
引用站外地址
Hexo博客添加自定义css和js文件
Leonus
在添加完js、css后,一定要记得在_config.butterfly.yml的inject里引用
引用站外地址
Butterfly自用全局变量
June's Blog
效果
1 2 3 4 5 6 7 8 9 10 11
| {% note default default标签 %}default 提示块标签{% endnote %}
{% note primary primary标签 %}primary 提示块标签{% endnote %}
{% note success success标签 %}success 提示块标签{% endnote %}
{% note info info标签 %}info 提示块标签{% endnote %}
{% note warning warning标签 %}warning 提示块标签{% endnote %}
{% note danger danger标签 %}danger 提示块标签{% endnote %}
|
参考链接
引用站外地址
引用站外地址
修改方案
1. 修改note.js
文件
修改[blogRoot]\themes\Butterfly\scripts\tag\note.js
icon
需要自行添加哦
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| 'use strict'
function postNote(args, content) { const typeIcons = { info: 'iconfont icon-info', primary: 'iconfont icon-plus', default: 'iconfont icon-right_1', warning: 'fa-regular fa-circle-dot', danger: 'fa-regular fa-circle-xmark', success: 'fa-regular fa-circle-check' }
const noteType = args[0] || 'note' const remainingArgs = args.slice(1) let [title, ...styleArgs] = remainingArgs[0]?.startsWith('fa-') ? ['', ...remainingArgs] : [remainingArgs[0], ...remainingArgs.slice(1)]
return `<div class="note note-${noteType} ${styleArgs.join(' ')}"> <div class="note-header"> <i class="note-icon ${typeIcons[noteType]}"></i> ${title ? `<span class="note-title">${title}</span>` : ''} </div> <div class="note-content">${hexo.render.renderSync({ text: content, engine: 'markdown' })}</div> </div>` }
hexo.extend.tag.register('note', postNote, {ends: true}) hexo.extend.tag.register('subnote', postNote, {ends: true})
|
2. 新增note.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| .note { --note-color: #5bc0de; --gradient-position: 4em -25em; --gradient-size: 30em;
border-radius: 12px; border: 1px solid transparent; position: relative; margin: 0 0 20px; padding-left: 15px !important; background-color: var(--june-card-bg); box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all .3s ease; background-image: radial-gradient(circle at var(--gradient-position), var(--note-color), transparent var(--gradient-size)), linear-gradient(var(--note-color) -2000%, transparent); }
.note[class*="note-"] { background-image: radial-gradient(circle at var(--gradient-position), var(--note-color), transparent var(--gradient-size)), linear-gradient(var(--note-color) -2000%, transparent); }
.note:hover { border-color: var(--note-color); }
.note.note-warning { --note-color: #f0ad4e; } .note.note-success { --note-color: #5cb85c; } .note.note-danger { --note-color: #d9534f; } .note.note-info { --note-color: #5bc0de; } .note.note-primary { --note-color: #6f42c1; } .note.note-default { --note-color: #777; }
.note .note-header { display: flex; align-items: center; font-weight: 700; margin-bottom: 10px; font-size: 1em; color: var(--note-color); }
.note .note-header i.note-icon { margin-right: 10px; color: inherit; }
.note .note-content p { margin: 0 !important; }
|