本WIKI于2021年03月04日通过了时雨音的接管申请,编辑权限开放。

欢迎收藏本WIKI防止迷路,也希望有爱的小伙伴和我们一起编辑哟~

建议使用PC版页面访问本WIKI以获得更佳体验!

编辑帮助WIKI建议

全站通知:

用户:646195980/Emote.js

来自坎特伯雷公主与骑士唤醒冠军之剑的奇幻冒险WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
/**
 * Emote.js | Inspiration comes from https://wiki.biligame.com/gt/?curid=17435
 * Author: 飞小RAN (https://wiki.biligame.com/gt/User:646195980)
 * License: See https://wiki.biligame.com/gt/User:646195980#License
 **/
(async function() {
    'use strict';
    const response = await fetch('https://wiki.biligame.com/gt/MediaWiki:Emote.json?action=raw&ctype=application/json');
    const emotes = await response.json();
    document.querySelectorAll('.comment-text,.comment-text-mobile').forEach(comment=>{
        emotes.forEach(emote=>{
            comment.innerHTML = comment.innerHTML.replace(emote.text, `<img src="${emote.url}" alt="${emote.text}" title="${emote.title}" class="bili-rich-text-emoji">`);
        });
    });
})();