LLWiki正在建设中,欢迎加入我们

MediaWiki:Mobile.js

来自LLWiki
Bhsd讨论 | 贡献2020年8月7日 (五) 11:52的版本
跳转到导航 跳转到搜索

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

  • 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将为使用移动版网站的用户加载 */

/* Add to MediaWiki:Mobile.js for custom Mobile Menu links 
for MW-1.34.2 with MobileFrontend and MinervaNeue 
Just replace span text and href to add links */
/* 在匿名函数内定义变量 */
(function() {
	var recentchanges = '最近更改', sandbox = '沙盒', villagepump = '互助客栈', policy = '方针', help = '帮助';
	switch(mw.config.get('wgUserLanguage')) {
		case 'zh-hant':
		case 'zh-hk':
		case 'zh-mo':
		case 'zh-tw':
			recentchanges = '近期變更';
			villagepump = '互助客棧';
			policy = '方針';
			help = '幫助';
			break;
	}
 
	var timer = setInterval(function() {
		if ($('.menu ul:first').length) {
			console.log("mobile menu exists");
			clearInterval(timer);
			$('.menu ul:first').append('<li><a href="/zh/special:recentchanges" class="mw-ui-icon mw-ui-icon-before"><span>' + recentchanges + '</span></a></li><li><a href="/zh/project:沙盒" class="mw-ui-icon mw-ui-icon-before"><span>' + sandbox + '</span></a></li><li><a href="/zh/project:互助客栈" class="mw-ui-icon mw-ui-icon-before"><span>' + villagepump + '</span></a></li><li><a href="/zh/project:方针" class="mw-ui-icon mw-ui-icon-before"><span>' + policy + '</span></a></li><li><a href="/zh/help:帮助总览" class="mw-ui-icon mw-ui-icon-before"><span>' + help + '</span></a></li>');
		}
	}, 100); // check every 100ms
})();

/* 沙盒顶部 */
$('.page-LLWiki_沙盒 #mf-section-0').prepend('<table style="background-color:#F3F5F7;border:1px solid #D4DBE2;border-radius:5px;width:70%;border-left:10px solid #C5C5C5;margin:auto" cellpadding="4px" align="center"><tbody><tr><td width="15%"><div class="center"><img src="/mediawiki/img_auth.php/thumb/0/04/Bandeau-avertisement-3.png/50px-Bandeau-avertisement-3.png" decoding="async" srcset="/mediawiki/img_auth.php/0/04/Bandeau-avertisement-3.png 1.5x" width="50" height="50"></div></td><td style="padding-left:5px">欢迎来到沙盒!您可以在此进行编辑测试。</td></tr></tbody></table>');

/* 引自zh.moegirl.org.cn/mediawiki:mobile.js */
/* jquery.collapsible */
$(function() {
	 if ($('.mw-collapsible')[0])
	 mw.loader.using('jquery.makeCollapsible').then(function() {
            $('.mw-collapsible').makeCollapsible();
        });
})(jQuery, mediaWiki);