Код JavaScript (вставлять между тегами <head> и </head>):
<script language="javascript">
var timerID = 0;
var timerRunning = false;
var charNo = 0;
var charMax = 0;
var textLine = "перейти на сайт masteram"; //Текст на кнопке
var urlLine = "https://masteram.us"; //Адрес перехода после нажатия
function startShow() {
stopShow();
showLine();
timerRunning = true;
}
function stopShow() {
if (timerRunning) {
clearTimeout(timerID);
timerRunning = false;
}
}
function showLine() {
charMax = textLine.length;
if (charNo <= charMax) {
document.animationbutton.but.value = textLine.substring(0, charNo);
document.animationbutton.but.style.color = "red";
charNo++;
timerID = setTimeout("showLine()", 100);
}
else {
charNo = 0;
timerID = setTimeout("showLine()", 3000);
}
}
function gotoURL() {
location.href = urlLine;
}
</script>
Код HTML (вставлять между тегами <body onload = "startShow()"> и </body>):
<form name = "animationbutton">
<input type = "button" name = "but" onClick = "gotoURL()">
</form>