-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxterm.js
25 lines (25 loc) · 877 Bytes
/
xterm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var TextFlick = function (text, selector) {
this.text = text + ' ';
this.selector = selector;
this.counter = 0;
this.times = 0;
this.addText = function () {
if(this.counter === this.text.length) {
if(this.times === 2) return;
else {
document.querySelector(this.selector).innerHTML = ' ';
this.counter = 0;
this.times = this.times + 1;
}
}
else {
document.querySelector(this.selector).innerHTML = document.querySelector(this.selector).innerHTML + this.text.charAt(this.counter);
this.counter = this.counter + 1;
}
}
document.querySelector(this.selector).innerHTML = ' ';
};
var texy = new TextFlick('You\'re Late!', '#xterm');
setInterval(function () {
texy.addText();
}, 150);