Добавил звук печатающей клавиатуры

This commit is contained in:
2026-04-21 12:57:35 +03:00
parent a20f80453b
commit 4ce5faed59
3 changed files with 291 additions and 155 deletions

View File

@@ -216,14 +216,14 @@
<div class="term-line" id="welcomeLine"></div> <div class="term-line" id="welcomeLine"></div>
<div class="term-line hidden" id="loginLine"> <div class="term-line hidden" id="loginLine">
<span class="prompt">login:</span> <span id="loginPrompt" class="prompt"></span>
<span id="usernameText" class="typed-value"></span> <span id="usernameText" class="typed-value"></span>
<span id="usernameCaret" class="caret"></span> <span id="usernameCaret" class="caret"></span>
<input id="usernameInput" class="fake-input" type="text" autocomplete="username" spellcheck="false"> <input id="usernameInput" class="fake-input" type="text" autocomplete="username" spellcheck="false">
</div> </div>
<div class="term-line hidden" id="passwordLine"> <div class="term-line hidden" id="passwordLine">
<span class="prompt">password:</span> <span id="passwordPrompt" class="prompt"></span>
<span id="passwordText" class="typed-value"></span> <span id="passwordText" class="typed-value"></span>
<span id="passwordCaret" class="caret hidden"></span> <span id="passwordCaret" class="caret hidden"></span>
<input id="passwordInput" class="fake-input" type="password" autocomplete="current-password" spellcheck="false"> <input id="passwordInput" class="fake-input" type="password" autocomplete="current-password" spellcheck="false">
@@ -252,7 +252,7 @@
<script> <script>
(function () { (function () {
const canvas = document.getElementById("matrixCanvas"); const canvas = document.getElementById("matrixCanvas");
const ctx = canvas.getContext("2d"); const ctx = canvas ? canvas.getContext("2d") : null;
let matrixAnimationId = null; let matrixAnimationId = null;
let drops = []; let drops = [];
@@ -264,6 +264,7 @@
const interval = 1000 / fps; const interval = 1000 / fps;
function resizeCanvas() { function resizeCanvas() {
if (!canvas || !ctx) return;
canvas.width = window.innerWidth; canvas.width = window.innerWidth;
canvas.height = window.innerHeight; canvas.height = window.innerHeight;
columns = Math.floor(canvas.width / fontSize); columns = Math.floor(canvas.width / fontSize);
@@ -271,6 +272,8 @@
} }
function drawMatrix(time = 0) { function drawMatrix(time = 0) {
if (!canvas || !ctx) return;
if (time - lastTime < interval) { if (time - lastTime < interval) {
matrixAnimationId = requestAnimationFrame(drawMatrix); matrixAnimationId = requestAnimationFrame(drawMatrix);
return; return;
@@ -303,13 +306,15 @@
window.addEventListener("resize", resizeCanvas); window.addEventListener("resize", resizeCanvas);
const welcomeText = "добро пожаловать в ЖФЛ"; const welcomeText = "добро пожаловать в ЖФЛ";
const typingSpeed = 75;
const welcomeLine = document.getElementById("welcomeLine"); const welcomeLine = document.getElementById("welcomeLine");
const loginLine = document.getElementById("loginLine"); const loginLine = document.getElementById("loginLine");
const passwordLine = document.getElementById("passwordLine"); const passwordLine = document.getElementById("passwordLine");
const submitLine = document.getElementById("submitLine"); const submitLine = document.getElementById("submitLine");
const loginPrompt = document.getElementById("loginPrompt");
const passwordPrompt = document.getElementById("passwordPrompt");
const usernameInput = document.getElementById("usernameInput"); const usernameInput = document.getElementById("usernameInput");
const passwordInput = document.getElementById("passwordInput"); const passwordInput = document.getElementById("passwordInput");
@@ -323,7 +328,59 @@
const realUsername = document.getElementById("realUsername"); const realUsername = document.getElementById("realUsername");
const realPassword = document.getElementById("realPassword"); const realPassword = document.getElementById("realPassword");
let phase = "typing_welcome"; const hasServerError = !!document.querySelector(".sys-error");
let phase = "waiting_start";
let started = false;
let audioCtx = null;
function ensureAudioContext() {
if (!audioCtx) {
audioCtx = new (window.AudioContext || window.webkitAudioContext)();
}
if (audioCtx.state === "suspended") {
audioCtx.resume();
}
return audioCtx;
}
function playKeySound() {
const ctx = ensureAudioContext();
const oscillator = ctx.createOscillator();
const gainNode = ctx.createGain();
oscillator.type = "square";
oscillator.frequency.setValueAtTime(900, ctx.currentTime);
gainNode.gain.setValueAtTime(0.012, ctx.currentTime);
gainNode.gain.exponentialRampToValueAtTime(0.0001, ctx.currentTime + 0.035);
oscillator.connect(gainNode);
gainNode.connect(ctx.destination);
oscillator.start();
oscillator.stop(ctx.currentTime + 0.035);
}
function typeText(target, text, speed = 60, callback, withSound = true) {
let i = 0;
function typing() {
if (i < text.length) {
target.textContent += text[i];
if (withSound) playKeySound();
i++;
setTimeout(typing, speed);
} else if (callback) {
callback();
}
}
typing();
}
function focusCurrentInput() { function focusCurrentInput() {
if (phase === "login") { if (phase === "login") {
@@ -333,24 +390,53 @@
} }
} }
function showLoginStep() { function showLoginStep(prefill = "") {
phase = "login"; phase = "typing_login";
loginLine.classList.remove("hidden"); loginLine.classList.remove("hidden");
usernameCaret.classList.remove("hidden"); usernameCaret.classList.add("hidden");
passwordCaret.classList.add("hidden"); passwordCaret.classList.add("hidden");
setTimeout(() => usernameInput.focus(), 30); loginPrompt.textContent = "";
usernameText.textContent = "";
usernameInput.value = "";
typeText(loginPrompt, "login:", 60, () => {
if (prefill) {
usernameInput.value = prefill;
usernameText.textContent = prefill;
} }
function showPasswordStep() { phase = "login";
phase = "password"; usernameCaret.classList.remove("hidden");
usernameInput.focus();
});
}
function showPasswordStep(prefill = "") {
phase = "typing_password";
passwordLine.classList.remove("hidden"); passwordLine.classList.remove("hidden");
usernameCaret.classList.add("hidden"); usernameCaret.classList.add("hidden");
passwordCaret.classList.add("hidden");
passwordPrompt.textContent = "";
passwordText.textContent = "";
passwordInput.value = "";
typeText(passwordPrompt, "password:", 60, () => {
if (prefill) {
passwordInput.value = prefill;
passwordText.textContent = "*".repeat(prefill.length);
}
phase = "password";
passwordCaret.classList.remove("hidden"); passwordCaret.classList.remove("hidden");
setTimeout(() => passwordInput.focus(), 30); passwordInput.focus();
});
} }
function submitLogin() { function submitLogin() {
phase = "submitting"; phase = "submitting";
usernameCaret.classList.add("hidden");
passwordCaret.classList.add("hidden"); passwordCaret.classList.add("hidden");
submitLine.classList.remove("hidden"); submitLine.classList.remove("hidden");
@@ -362,38 +448,69 @@
}, 350); }, 350);
} }
function typeWelcome(index = 0) { function startSequence(options = {}) {
if (index < welcomeText.length) { if (started) return;
welcomeLine.textContent += welcomeText[index]; started = true;
setTimeout(() => typeWelcome(index + 1), typingSpeed);
const skipWelcome = !!options.skipWelcome;
const usernamePrefill = options.usernamePrefill || "";
ensureAudioContext();
phase = "typing_welcome";
welcomeLine.textContent = "";
loginPrompt.textContent = "";
passwordPrompt.textContent = "";
usernameText.textContent = "";
passwordText.textContent = "";
usernameInput.value = "";
passwordInput.value = "";
submitLine.classList.add("hidden");
loginLine.classList.add("hidden");
passwordLine.classList.add("hidden");
usernameCaret.classList.add("hidden");
passwordCaret.classList.add("hidden");
if (skipWelcome) {
welcomeLine.textContent = welcomeText;
setTimeout(() => showLoginStep(usernamePrefill), 120);
return; return;
} }
setTimeout(showLoginStep, 220); typeText(welcomeLine, welcomeText, 75, () => {
setTimeout(() => showLoginStep(usernamePrefill), 220);
});
} }
usernameInput.addEventListener("input", function () { usernameInput.addEventListener("input", function () {
usernameText.textContent = usernameInput.value; usernameText.textContent = usernameInput.value;
playKeySound();
}); });
passwordInput.addEventListener("input", function () { passwordInput.addEventListener("input", function () {
passwordText.textContent = "*".repeat(passwordInput.value.length); passwordText.textContent = "*".repeat(passwordInput.value.length);
playKeySound();
}); });
usernameInput.addEventListener("keydown", function (event) { usernameInput.addEventListener("keydown", function (event) {
if (event.key === "Enter") { if (event.key === "Enter") {
playKeySound();
event.preventDefault(); event.preventDefault();
if (!usernameInput.value.trim()) { if (!usernameInput.value.trim()) {
return; return;
} }
usernameCaret.classList.add("hidden");
showPasswordStep(); showPasswordStep();
} }
}); });
passwordInput.addEventListener("keydown", function (event) { passwordInput.addEventListener("keydown", function (event) {
if (event.key === "Enter") { if (event.key === "Enter") {
playKeySound();
event.preventDefault(); event.preventDefault();
if (!usernameInput.value.trim() || !passwordInput.value) { if (!usernameInput.value.trim() || !passwordInput.value) {
@@ -405,11 +522,26 @@
}); });
document.addEventListener("click", function () { document.addEventListener("click", function () {
if (!started) {
startSequence();
return;
}
focusCurrentInput(); focusCurrentInput();
}); });
document.addEventListener("keydown", function (event) { document.addEventListener("keydown", function (event) {
if (phase === "typing_welcome" || phase === "submitting") { if (!started) {
event.preventDefault();
startSequence();
return;
}
if (
phase === "typing_welcome" ||
phase === "typing_login" ||
phase === "typing_password" ||
phase === "submitting"
) {
return; return;
} }
@@ -428,8 +560,11 @@
} }
}); });
typeWelcome(); if (hasServerError) {
startSequence({ skipWelcome: true });
}
})(); })();
</script> </script>
</body> </body>
</html> </html>

View File

@@ -1234,7 +1234,8 @@
drops[i] = 0; drops[i] = 0;
} }
drops[i] += 0.65; // drops[i] += 0.65;
drops[i] ++;
} }
matrixAnimationId = requestAnimationFrame(drawMatrix); matrixAnimationId = requestAnimationFrame(drawMatrix);

View File

@@ -534,7 +534,7 @@
drops[i] = 0; drops[i] = 0;
} }
drops[i] += 0.65; drops[i] ++;
} }
matrixAnimationId = requestAnimationFrame(drawMatrix); matrixAnimationId = requestAnimationFrame(drawMatrix);