修改page.js
在[you_blog]\themes\butterfly\scripts\helpers\page.js
搜索cloudTags
函数,找到绘制标签云的代码,增加<sup>${tag.length}</sup>
或<sub>${tag.length}</sub>
可绘制表示标签文章数的上下标。
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
| hexo.extend.helper.register('cloudTags', function (options = {}) { const theme = hexo.theme.config const env = this let source = options.source const minfontsize = options.minfontsize const maxfontsize = options.maxfontsize const limit = options.limit const unit = options.unit || 'px'
let result = '' if (limit > 0) { source = source.limit(limit) }
const sizes = [] source.sort('length').forEach(tag => { const { length } = tag if (sizes.includes(length)) return sizes.push(length) })
const length = sizes.length - 1 source.forEach(tag => { const ratio = length ? sizes.indexOf(tag.length) / length : 0 const size = minfontsize + ((maxfontsize - minfontsize) * ratio) let style = `font-size: ${parseFloat(size.toFixed(2))}${unit};` const color = 'rgb(' + Math.floor(Math.random() * 201) + ', ' + Math.floor(Math.random() * 201) + ', ' + Math.floor(Math.random() * 201) + ')' // 0,0,0 -> 200,200,200 style += ` color: ${color}` - result += `<a href="${env.url_for(tag.path)}" style="${style}">${tag.name}</a>` + result += `<a href="${env.url_for(tag.path)}" style="${style}">${tag.name}<sup>${tag.length}</sup></a>` }) return result })
|
参考链接
09-顶部加载渐变条
07-侧边栏归档、分类修改