편집 요약 없음 |
편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */ | /* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */ | ||
document.addEventListener('DOMContentLoaded', function() { document.querySelectorAll(' | document.addEventListener('DOMContentLoaded', function() { | ||
document.querySelectorAll('.obfuscated-text').forEach(function(e) { | |||
const lowestChar = '!'.charCodeAt(0), | |||
highestChar = '~'.charCodeAt(0); | |||
const originalText = e.textContent; | |||
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; | |||
}, 100); | |||
}); | |||
}); |
2024년 12월 24일 (화) 17:54 판
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.obfuscated-text').forEach(function(e) {
const lowestChar = '!'.charCodeAt(0),
highestChar = '~'.charCodeAt(0);
const originalText = e.textContent;
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;
}, 100);
});
});