미디어위키:Common.js: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
document.addEventListener('DOMContentLoaded', function() {
document.addEventListener('DOMContentLoaded', function() {
    console.log("DOMContentLoaded event triggered");
     document.querySelectorAll('.obfuscated-text').forEach(function(e) {
     document.querySelectorAll('.obfuscated-text').forEach(function(e) {
         const lowestChar = '!'.charCodeAt(0),
         const lowestChar = '!'.charCodeAt(0),
             highestChar = '~'.charCodeAt(0);
             highestChar = '~'.charCodeAt(0);
         const originalText = e.textContent;
         const originalText = e.textContent;
        console.log("Original text: ", originalText);


         setInterval(function() {
         setInterval(function() {
18번째 줄: 22번째 줄:
             }
             }
             e.textContent = randomString;
             e.textContent = randomString;
         }, 100);
            console.log("Random text: ", randomString);
         }, 1000); // 간격을 1초로 늘림
     });
     });
});
});

2024년 12월 24일 (화) 17:56 판

/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
document.addEventListener('DOMContentLoaded', function() {
    console.log("DOMContentLoaded event triggered");

    document.querySelectorAll('.obfuscated-text').forEach(function(e) {
        const lowestChar = '!'.charCodeAt(0),
            highestChar = '~'.charCodeAt(0);
        const originalText = e.textContent;

        console.log("Original text: ", originalText);

        setInterval(function() {
            let randomString = '';
            for (let i = 0; i < originalText.length; i++) {
                if (originalText[i] !== ' ') {
                    randomString += String.fromCharCode(
                        Math.floor(Math.random() * (highestChar - lowestChar + 1)) + lowestChar
                    );
                } else {
                    randomString += ' ';
                }
            }
            e.textContent = randomString;
            console.log("Random text: ", randomString);
        }, 1000); // 간격을 1초로 늘림
    });
});