User:A Chinese ID/logo test 20th anniversary proposed icon.js
外观
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
$(function(){
var lang = mw.config.get('wgUserLanguage');
if(lang == 'zh-cn'||
lang == 'zh-sg'||
lang == 'zh-my'||
lang == 'zh-hans'){
// 簡體 logo
$('#p-logo a')
.attr('style', "background-image: url('/upwiki/wikipedia/commons/e/ec/Wikipedia-zh_20th_anniversary_logo_proposal_1_%285-piece_puzzle%29_zh-Hans.svg') !important")
.css('height', '135px')
;
} else {
// 繁體 logo
$('#p-logo a')
.attr('style', "background-image: url('/upwiki/wikipedia/commons/c/c2/Wikipedia-zh_20th_anniversary_logo_proposal_1_%285-piece_puzzle%29_zh-Trad.svg') !important")
.css('height', '135px')
;
}
$('#p-logo')
.css('height', '135px')
;
// 針對monobook皮膚的用戶
$('#p-search.portlet')
.css('margin', '20px 0 0.5em')
;
});