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

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

来自LLWiki
跳转到导航 跳转到搜索
第11行: 第11行:
eleFixed.style.width = eleStatic.getBoundingClientRect().width + 'px';
eleFixed.style.width = eleStatic.getBoundingClientRect().width + 'px';
eleStatic.style.visibility = 'hidden';
eleStatic.style.visibility = 'hidden';
var timer = -1;
window.addEventListener('scroll', function() {
window.addEventListener('scroll', function() {
setTimeout(function() {
clearInterval(timer);
timer = setTimeout(function() {
if(eleStatic.getBoundingClientRect().top < eleFixed.offsetTop) {
if(eleStatic.getBoundingClientRect().top < eleFixed.offsetTop) {
eleFixed.style.display = 'none';
eleFixed.style.display = 'none';

2020年10月6日 (二) 00:08的版本

Template-info.png 小部件文档
这个文档是内联文档。

请使用{{SIF nav}}调用。

JavaScript脚本:

window.addEventListener('load', function () {
    var eleStatic = document.querySelector('.start-screen');
    eleStatic.querySelectorAll('a').forEach(function(ele) {
        ele.href = 'javascript:void(0)';
    });
    var eleFixed = eleStatic.cloneNode(true);
    eleFixed.classList.add('sticky-bottom');
    eleStatic.parentNode.insertBefore(eleFixed, eleStatic);
    eleFixed.style.width = eleStatic.getBoundingClientRect().width + 'px';
    eleStatic.style.visibility = 'hidden';
    var timer = -1;
    window.addEventListener('scroll', function() {
        clearInterval(timer);
        timer = setTimeout(function() {
            if(eleStatic.getBoundingClientRect().top < eleFixed.offsetTop) {
                eleFixed.style.display = 'none';
                eleStatic.style.visibility = '';
            }
            else {
                eleFixed.style.display = '';
                eleStatic.style.visibility = 'hidden';
            }
        }, 400);
    });
});
//

CSS样式表:

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