Widget:遊戲主界面

於 2020年10月7日 (三) 00:32 由 Bhsd對話 | 貢獻 所做的修訂
Template-info.png 小部件文檔
這個文檔是內聯文檔。

請使用{{SIF nav}}調用。

JavaScript腳本:

window.addEventListener('load', function () {
    var ele = document.querySelector('.start-screen'),
        parent = document.querySelector('#mw-content-text > .mw-parser-output');
    ele.querySelectorAll('a[href]').forEach(function(e) {
        var href = decodeURIComponent(e.href),
            section = /#/.test(href),
            pagename = section ? href.match('^(?:https:)?(?:\/\/llwiki\.org)?/zh/(.*)#')[1] : href.match('^(?:https:)?(?:\/\/llwiki\.org)?/zh/(.*)$')[1];
        if(pagename == mw.config.get('wgPageName')) {
            e.href = section ? href.match(/#.*$/)[0] : 'javascript:void(0)';
        }
    });
    if(mw.config.get('skin') == 'minerva') { parent.appendChild(ele); }
});
//

CSS樣式表:

 */
.start-screen {
	text-align: center;
	position: sticky;
	bottom: 3px;
}
.start-screen table {
	display: inline-table;
}
/*