mirror of
https://github.com/dyzulk/cdn.git
synced 2026-01-26 21:42:00 +07:00
10 lines
304 B
JavaScript
10 lines
304 B
JavaScript
var showText = function (target, message, index, interval) {
|
|
if (index < message.length) {
|
|
$(target).append(message[index++]);
|
|
setTimeout(function () { showText(target, message, index, interval); }, interval);
|
|
}
|
|
}
|
|
$(function () {
|
|
showText("h1", "I am error 404.", 0, 80);
|
|
});
|