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

Widget:游戏主界面

来自LLWiki
Bhsd讨论 | 贡献2020年10月7日 (三) 03:18的版本
跳转到导航 跳转到搜索
Template-info.png 小部件文档
这个文档是内联文档。

请使用导航模板调用。

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;
}
/*