Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

评论表情包

OSS文件已删除,请自行替换!
替换textarea成评论框的ID

1
2
<span id="sticker_box"></span>
<a onclick="toggleStickerBox()" a="#">表情</a>
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
<script>const stickers = [
//这里填你的图片
'001', '002', '003', '004', '005', '006', '007', '008'
];
const stickerBox = document.getElementById('sticker_box');
stickers.forEach(sticker => {
const button = document.createElement('button');
button.className = 'sk';
button.onclick = function() {
sticker01(sticker);
};

const img = document.createElement('img');
//这里填图片目录
img.src = `//oss.wuminboke.site/sticker/${sticker}.webp`;
img.style.height = '50px';
img.style.width = '50px';
img.loading = "lazy";

button.appendChild(img);
stickerBox.appendChild(button);
});
function toggleStickerBox() {
const divToToggle = document.getElementById('sticker_box');
divToToggle.style.display = divToToggle.style.display === 'none' ? 'block' : 'none';
}
function sticker01(stickernum) {
const textarea1 = document.getElementById('textarea');
//这里填图片目录
textarea1.value += `<img src="//oss.wuminboke.site//sticker/${stickernum}.webp" height="100px" width="100px">`;
}</script>

站外链接提醒

wuminboke.site替换成自己域名可直接使用

1
<script>function links(){const t=document.querySelectorAll("#post-body a"),e=["#"],n=[{url:"github.com",tag:" - Github"},{url:"t.me",tag:" - Telegram"},{url:"wuminboke.site",tag:""}];for(let u=0;u<t.length;u++){const l=t[u],o=l.href;if(e.includes(o))continue;const i=n.find((t=>o.includes(t.url)));l.innerText+=i?i.tag:" - 站外链接"}}links();</script>


Uses Volantis as theme. You can find source in https://github.com/volantis-x/volantis-docs.

本站总访问量为 访客数为

萌ICP备20235354号

Feed(Atom)