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

“Widget:游戏主界面”的版本间差异

来自LLWiki
跳转到导航 跳转到搜索
标签移动版网页编辑 移动版编辑
第14行: 第14行:
if(mw.config.get('skin') == 'minerva') {
if(mw.config.get('skin') == 'minerva') {
parent.appendChild(ele);
parent.appendChild(ele);
ele.scrollTo(ele.scrollLeftMax / 2, 0);
ele.scrollLeft = ele.scrollLeftMax / 2;
}
}
});
});

2020年10月7日 (三) 22:49的版本

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);
        ele.scrollLeft = ele.scrollLeftMax / 2;
    }
});
//

CSS样式表:

 */
.start-screen {
	text-align: center;
	position: sticky;
	bottom: 3px;
	white-space: nowrap;
	overflow-x: auto;
}
.start-screen table {
	display: inline-table;
}
/*