MediaWiki:Common.js:修订间差异

来自Fuckrooms Wiki
无编辑摘要
标签手工回退
无编辑摘要
 
(未显示4个用户的38个中间版本)
第1行: 第1行:
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
// console.log("Hello World!");
/* CSS模板 */
(function() {
(function() {
   
  var importCssDivs = document.querySelectorAll('div.import-css');
    var style = document.createElement('style');
 
     style.textContent = '.snowflake { position: fixed; color: #fff; z-index: 9999; user-select: none; } @keyframes fall { 0% { transform: translateY(-100vh) rotate(0deg); } 100% { transform: translateY(100vh) rotate(720deg); } }';
  importCssDivs.forEach(function(div) {
    document.head.appendChild(style);
     var cssContent = div.textContent || div.innerText;
 
    if (cssContent) {
      var styleTag = document.createElement('style');
      styleTag.type = 'text/css';
  styleTag.appendChild(document.createTextNode(cssContent));


   
      document.head.appendChild(styleTag);
     var snowflakes = 35,
     }
        minSize = 10,
  });
        maxSize = 20,
})();
        speed = 9,
        characters = ['🍀', '☘️', '🍃'];


   
/* 落叶特效 */
     function createSnow() {
(function(){
         for(var i = 0; i < snowflakes; i++) {
     if (!document.getElementById('snow-style')) {
             var flake = document.createElement('div');
         const style = document.createElement('style');
            flake.className = 'snowflake';
        style.id = 'snow-style';
            flake.textContent = characters[Math.floor(Math.random() * characters.length)];
        style.textContent = `
           
            @keyframes snowRise {
           
                0% {
            flake.style.left = Math.random() * 100 + '%';
                    transform: translateY(0) rotate(0deg);  
            flake.style.fontSize = Math.random() * (maxSize - minSize) + minSize + 'px';
                    bottom: -130px;
            flake.style.animation = 'fall ' + (Math.random() * 5 + speed) + 's linear infinite';
                }
             flake.style.opacity = Math.random() * 0.5 + 0.5;
                100% {
              
                    transform: translateY(-100vh) rotate(80deg);
            document.body.appendChild(flake);
                    bottom: calc(100% + 130px);
           
                }
           
            }
            setInterval(function(f) {
            .snowflake {
                f.style.transform = 'translateX(' + (Math.random() * 30 - 15) + 'px)';
                position: fixed;
            }, 2000, flake);
                bottom: -130px;
         }
                z-index: 9999;
                pointer-events: none;
                user-select: none;
                animation-timing-function: linear;
                will-change: transform;
             }
        `;
        document.head.appendChild(style);
    }
 
    function createSnowflake() {
        const snowflake = document.createElement('div');
        snowflake.className = 'snowflake';
        const icons = ['🎂','🎂'];
        snowflake.innerHTML = icons[Math.floor(Math.random() * icons.length)];
        const size = Math.random() * 32 + 8;
        const left = Math.random() * 100;
        const duration = Math.random() * 8 + 8;
        snowflake.style.cssText = `
            font-size: ${size}px;
            left: ${left}%;
            animation: snowRise ${duration}s linear forwards;
             opacity: ${Math.random() * 0.5 + 0.5};
             color: hsl(${Math.random() * 360}, 100%, 90%);
        `;
 
        // 确保动画结束后移除元素
        const removeSnowflake = () => {
            snowflake.remove();
            snowflake.removeEventListener('animationend', removeSnowflake);
        };
        snowflake.addEventListener('animationend', removeSnowflake);
 
         document.body.appendChild(snowflake);
     }
     }


      
     let interval = setInterval(createSnowflake, 250);
     window.addEventListener('load', function() {
 
         createSnow();
     document.addEventListener('visibilitychange', function() {
        window.addEventListener('resize', function() {
         if (document.hidden) {
             document.querySelectorAll('.snowflake').forEach(function(f) {
             clearInterval(interval);
                f.style.left = Math.random() * 100 + '%';
        } else {
            });
            interval = setInterval(createSnowflake, 250);
         });
         }
     });
     });
    // 初始创建雪花
    for (let i = 0; i < 10; i++) {
        createSnowflake();
    }
})();
})();

2025年8月8日 (五) 15:10的最新版本

/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
// console.log("Hello World!");

/* CSS模板 */
(function() {
  var importCssDivs = document.querySelectorAll('div.import-css');

  importCssDivs.forEach(function(div) {
    var cssContent = div.textContent || div.innerText;

    if (cssContent) {
      var styleTag = document.createElement('style');
      styleTag.type = 'text/css';
	  styleTag.appendChild(document.createTextNode(cssContent));

      document.head.appendChild(styleTag);
    }
  });
})();

/* 落叶特效 */
(function(){
    if (!document.getElementById('snow-style')) {
        const style = document.createElement('style');
        style.id = 'snow-style';
        style.textContent = `
            @keyframes snowRise {
                0% { 
                    transform: translateY(0) rotate(0deg); 
                    bottom: -130px;
                }
                100% { 
                    transform: translateY(-100vh) rotate(80deg); 
                    bottom: calc(100% + 130px);
                }
            }
            .snowflake {
                position: fixed;
                bottom: -130px;
                z-index: 9999;
                pointer-events: none;
                user-select: none;
                animation-timing-function: linear;
                will-change: transform;
            }
        `;
        document.head.appendChild(style);
    }

    function createSnowflake() {
        const snowflake = document.createElement('div');
        snowflake.className = 'snowflake';
        const icons = ['🎂','🎂'];
        snowflake.innerHTML = icons[Math.floor(Math.random() * icons.length)];
        const size = Math.random() * 32 + 8;
        const left = Math.random() * 100;
        const duration = Math.random() * 8 + 8;
        snowflake.style.cssText = `
            font-size: ${size}px;
            left: ${left}%;
            animation: snowRise ${duration}s linear forwards;
            opacity: ${Math.random() * 0.5 + 0.5};
            color: hsl(${Math.random() * 360}, 100%, 90%);
        `;

        // 确保动画结束后移除元素
        const removeSnowflake = () => {
            snowflake.remove();
            snowflake.removeEventListener('animationend', removeSnowflake);
        };
        snowflake.addEventListener('animationend', removeSnowflake);

        document.body.appendChild(snowflake);
    }

    let interval = setInterval(createSnowflake, 250);

    document.addEventListener('visibilitychange', function() {
        if (document.hidden) {
            clearInterval(interval);
        } else {
            interval = setInterval(createSnowflake, 250);
        }
    });

    // 初始创建雪花
    for (let i = 0; i < 10; i++) {
        createSnowflake();
    }
})();