mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
fix: 修復 toc 在小設備上顯示出屏幕外的 bug fix: 修復在打賞按鈕周圍也會觸發打賞彈窗的 bug fix: Waline 最近評論的時間只顯示 "剛剛" 的問題 (以docker的方式執行) #730 fix: 修復點擊右下角顯示按鈕時,按鈕沒有出現的 bug remove: 移除 button 的 hover 效果
72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
/**
|
||
* Butterfly
|
||
* @example
|
||
* hideInline
|
||
* {% hideInline content,display,bg,color %}
|
||
* content不能包含當引號,可用 '
|
||
* hideBlock
|
||
* {% hideBlock display,bg,color %}
|
||
* content
|
||
* {% endhideBlock %}
|
||
* hideToggle
|
||
* {% hideToggle display,bg,color %}
|
||
* content
|
||
* {% endhideToggle %}
|
||
*/
|
||
|
||
'use strict'
|
||
|
||
function hideInline (args) {
|
||
args = args.join(' ').split(',')
|
||
const content = args[0]
|
||
const display = args[1] || 'Click'
|
||
const bg = args[2] || false
|
||
const color = args[3] || false
|
||
let group = 'style="'
|
||
|
||
if (bg) group += `background-color: ${bg};`
|
||
if (color) group += `color: ${color}`
|
||
group += '"'
|
||
|
||
return `<span class="hide-inline"><button type="button" class="hide-button" ${group}>${display}
|
||
</button><span class="hide-content">${content}</span></span>`
|
||
}
|
||
|
||
function hideBlock (args, content) {
|
||
args = args.join(' ').split(',')
|
||
const display = args[0] || 'Click'
|
||
const bg = args[1] || false
|
||
const color = args[2] || false
|
||
let group = 'style="'
|
||
|
||
if (bg) group += `background-color: ${bg};`
|
||
if (color) group += `color: ${color}`
|
||
group += '"'
|
||
|
||
return `<div class="hide-block"><button type="button" class="hide-button" ${group}>${display}
|
||
</button><div class="hide-content">${hexo.render.renderSync({ text: content, engine: 'markdown' })}</div></div>`
|
||
}
|
||
|
||
function hideToggle (args, content) {
|
||
args = args.join(' ').split(',')
|
||
const display = args[0]
|
||
const bg = args[1] || false
|
||
const color = args[2] || false
|
||
let group = 'style="'
|
||
let border = ''
|
||
|
||
if (bg) {
|
||
border = `style="border: 1px solid ${bg}"`
|
||
group += `background-color: ${bg};`
|
||
}
|
||
if (color) group += `color: ${color}`
|
||
group += '"'
|
||
|
||
return `<div class="hide-toggle" ${border}><div class="hide-button toggle-title" ${group}><i class="fas fa-caret-right fa-fw"></i><span>${display}</span></div>
|
||
<div class="hide-content">${hexo.render.renderSync({ text: content, engine: 'markdown' })}</div></div>`
|
||
}
|
||
|
||
hexo.extend.tag.register('hideInline', hideInline)
|
||
hexo.extend.tag.register('hideBlock', hideBlock, { ends: true })
|
||
hexo.extend.tag.register('hideToggle', hideToggle, { ends: true })
|