“MediaWiki:Sidebar”与“MediaWiki:Mainpage.js”:页面之间的差异

MediaWiki界面页面
(页面间差异)
无编辑摘要
 
无编辑摘要
标签手工回退 已被回退
 
第1行: 第1行:
* navigation
$(function(){
** mainpage|mainpage-description
    /* 头图 */
** recentchanges-url|recentchanges
    var page = document.querySelector("body");
* 玩家手册
    if (page.classList.contains('page-首页')) {
** 成员守则|成员守则
        var mwBody = document.getElementById('content');
** 建设标准|建设标准
        var newDiv = document.createElement('div');
** 玩家指南|玩家指南
        newDiv.setAttribute('class', 'header-image');
** 编辑指南|编辑指南
        newDiv.innerHTML = '<div class="header-image" style="background-image: linear-gradient(to top, var(--color-surface-0), transparent 50%), url(https://image.knebulae.com/data/lnl.png);background-size: cover;background-position: top;height: 36vh;margin-bottom: -30vh;"></div>';
* 地铁
        mwBody.parentNode.insertBefore(newDiv, mwBody);
** 星云轨道交通环线|环线
    }
** 星云轨道交通中央线|中央线
}());
** 星云轨道交通星岛线|星岛线

2023年9月27日 (三) 19:52的版本

$(function(){
    /* 头图 */
    var page = document.querySelector("body");
    if (page.classList.contains('page-首页')) {
        var mwBody = document.getElementById('content');
        var newDiv = document.createElement('div');
        newDiv.setAttribute('class', 'header-image');
        newDiv.innerHTML = '<div class="header-image" style="background-image: linear-gradient(to top, var(--color-surface-0), transparent 50%), url(https://image.knebulae.com/data/lnl.png);background-size: cover;background-position: top;height: 36vh;margin-bottom: -30vh;"></div>';
        mwBody.parentNode.insertBefore(newDiv, mwBody);
    }
}());