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

Материал из Backrooms

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


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

Версия от 21:43, 14 июня 2022

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

checkElements();

function checkElements() {
	checkForTerminal();
}

// elements

function checkForTerminal() {
	var startText = "";
	var speed = 50;
	var i = 0;

    Object.assign(startText, $(".terminal").text);

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

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