打开/关闭菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.js:修订间差异

MediaWiki界面页面
创建页面,内容为“→‎这里的任何JavaScript将为所有用户在每次页面加载时加载。:​ mw.loader.load('/res/Common/js/vue.min.js'); mw.loader.load('/res/Common/js/vuetify.min.js');”
 
无编辑摘要
 
(未显示同一用户的5个中间版本)
第1行: 第1行:
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
mw.loader.load('/res/Common/js/vue.min.js');
mw.loader.load("/res/Common/js/vue.min.js");
mw.loader.load('/res/Common/js/vuetify.min.js');
mw.loader.load("/res/Common/js/vuetify.min.js");
 
// 全局颜色调整函数
function lightenColor(color, percent) {
  const num = parseInt(color.replace("#", ""), 16),
    amt = Math.round(2.55 * percent),
    R = (num >> 16) + amt,
    G = ((num >> 8) & 0x00ff) + amt,
    B = (num & 0x0000ff) + amt;
 
  return (
    "#" +
    (
      0x1000000 +
      (R < 255 ? (R < 1 ? 0 : R) : 255) * 0x10000 +
      (G < 255 ? (G < 1 ? 0 : G) : 255) * 0x100 +
      (B < 255 ? (B < 1 ? 0 : B) : 255)
    )
      .toString(16)
      .slice(1)
      .toUpperCase()
  );
}
 
 
// 检查 mw 对象是否存在
if (typeof mw !== 'undefined') {
  mw.loader.using('mediawiki.user', function() {
      // 判断用户是否是匿名用户
      if (mw.user.isAnon()) {
          // 隐藏指定的元素
          var elementsToHide = document.querySelector("#content > div > header > div.page-actions > div.page-actions-more.page-actions__item.citizen-dropdown");
          elementsToHide.style.display = 'none';
          elementsToHide = document.querySelector("#n-recentchanges");
          elementsToHide.style.display = 'none';
          elementsToHide =document.querySelector("#t-specialpages")
          elementsToHide.style.display = 'none';
          elementsToHide =document.querySelector("#t-upload")
          elementsToHide.style.display = 'none';
      }
  });
} else {
  console.error('mw object is not available.');
}

2024年8月3日 (六) 07:35的最新版本

/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
mw.loader.load("/res/Common/js/vue.min.js");
mw.loader.load("/res/Common/js/vuetify.min.js");

// 全局颜色调整函数
function lightenColor(color, percent) {
  const num = parseInt(color.replace("#", ""), 16),
    amt = Math.round(2.55 * percent),
    R = (num >> 16) + amt,
    G = ((num >> 8) & 0x00ff) + amt,
    B = (num & 0x0000ff) + amt;

  return (
    "#" +
    (
      0x1000000 +
      (R < 255 ? (R < 1 ? 0 : R) : 255) * 0x10000 +
      (G < 255 ? (G < 1 ? 0 : G) : 255) * 0x100 +
      (B < 255 ? (B < 1 ? 0 : B) : 255)
    )
      .toString(16)
      .slice(1)
      .toUpperCase()
  );
}


// 检查 mw 对象是否存在
if (typeof mw !== 'undefined') {
  mw.loader.using('mediawiki.user', function() {
      // 判断用户是否是匿名用户
      if (mw.user.isAnon()) {
          // 隐藏指定的元素
          var elementsToHide = document.querySelector("#content > div > header > div.page-actions > div.page-actions-more.page-actions__item.citizen-dropdown");
          elementsToHide.style.display = 'none';
          elementsToHide = document.querySelector("#n-recentchanges");
          elementsToHide.style.display = 'none';
          elementsToHide =document.querySelector("#t-specialpages")
          elementsToHide.style.display = 'none';
          elementsToHide =document.querySelector("#t-upload")
          elementsToHide.style.display = 'none';
      }
  });
} else {
  console.error('mw object is not available.');
}