-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
45 lines (42 loc) · 1.22 KB
/
script.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// let data = ["Text1", "Text2","Text3","Text4"];
// let len = 0;
// let speed=150;
// for (let i = 0; i < data.length; ++i) len += 2*data[i].length;
// len += 4*data.length;
// function type() {
// let p=0;
// for (let i = 0; i < data.length; ++i) {
// let x = 0;
// while (x <= data[i].length) {
// let y=x;
// setTimeout(()=>{
// document.getElementById('typewriter').innerHTML=`${data[i].substr(0,y)}`
// },p*speed)
// ++x,++p;
// }
// --x,p+=2;
// while (x >= 0) {
// let y=x;
// setTimeout(()=>{
// document.getElementById('typewriter').innerHTML=`${data[i].substr(0,y)}`
// },p*speed)
// --x,++p;
// }
// }
// setTimeout(() => {
// type();
// }, len * speed);
// }
// function blinkingPointer(){
// setTimeout(()=>{
// document.getElementById('check').style.borderRightColor=`red`;
// },500)
// setTimeout(()=>{
// document.getElementById('check').style.borderRightColor='transparent'
// },1000)
// setTimeout(()=>{
// blinkingPointer();
// },1000)
// }
// blinkingPointer();
// type();