MediaWiki:Common.js

来自仁王 wiki
Faxlok讨论 | 贡献2021年3月5日 (五) 18:24的版本 (将插件tinymce翻译成中文)

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

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:前往菜单 → 设置(Mac为Opera → Preferences),然后隐私和安全 → 清除浏览数据 → 缓存的图片和文件
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
//console.log("已触发MediaWiki:Common.js");

/* 创建并设置回到顶部div */
//window.onload = function () {
//console.log("onload触发");
var div = document.createElement("div");
div.style.backgroundColor = "steelblue";
div.style.position = "fixed";
div.style.textAlign = "center";
div.style.opacity = ".7";
div.style.width = "40px";
div.style.height = "40px";
div.style.bottom = "100px";
div.style.right = "50px";
div.style.display = "none";
div.innerHTML = '<a href="#" style="color:white">返回顶部</a>';

var i = document.getElementById("mw-footer-container");
i.parentNode.insertBefore(div,i);

document.body.addEventListener("wheel",function () {
//console.log("滚动条");
document.documentElement.scrollTop > document.documentElement.clientHeight ? div.style.display = "block":div.style.display = "none";});
//}

/* 把导航栏左侧仁王1和仁王2变为可用超链接 */
var nioh1 = document.getElementById("p-.E4.BB.81.E7.8E.8B1-label");
nioh1.style.cursor="pointer";
nioh1.style.color="#36c";
nioh1.onclick=function(){window.location.href="index.php?title=仁王1";}
var nioh2 = document.getElementById("p-.E4.BB.81.E7.8E.8B2-label");
nioh2.style.cursor="pointer";
nioh2.style.color="#36c";
nioh2.onclick=function(){window.location.href="index.php?title=仁王2";}

/* 把tinymce插件影响到的编辑源代码变成中文并且换成高级编辑 */
document.querySelector(".collapsible span").innerText="编辑源代码";
document.querySelector("#ca-tinymceedit span").innerText="高级编辑";