MediaWiki:Common.js: различия между версиями

Материал из Backrooms

Нет описания правки
Нет описания правки
Строка 17: Строка 17:


if (i < startText.length) {
if (i < startText.length) {
$("terminal").text += txt.charAt(i);
$("terminal").text += startText.charAt(i);
i++;
i++;
setTimeout(checkForTerminal, speed);
setTimeout(checkForTerminal, speed);
}
}
}
}

Версия от 10:29, 13 июня 2022

/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */

checkElements();

function checkElements() {
	checkForTerminal();
}

// elements

function checkForTerminal() {
	var startText = $("terminal").text;
	var speed = 50;
	var i = 0;

	$("terminal").text = "";

	if (i < startText.length) {
		$("terminal").text += startText.charAt(i);
		i++;
		setTimeout(checkForTerminal, speed);
	}
}