坦白使人心地轻松的妙药。——西塞罗

实现打字机效果

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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}

.d1 {
width: 100%;
height: 600px;
background: #000;
position: relative;
}

.zhezhao {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.zhezhao {
background: rgba(0, 0, 0, .1);
}

.font {
position: absolute;
top: 0;
left: 140px;
bottom: 0;
margin: auto 0;
font-size: 55px;
height: 70px;
width: max-content;
color: #fff;
z-index: 2;
text-align: left;
}

.font::after {
content: '';
display: inline-block;
width: 2px;
height: 100%;
background: #fff;
position: absolute;
top: 0;
right: -5px;
animation: dh .8s ease-in-out infinite;
}

@keyframes dh {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
</head>
<body>
<div class="d1">
<div class="zhezhao"></div>
<div class="font">
</div>
</div>
<script>
var arr = ['测试1111', '测试22222', '测试333333', '测试444444', '测试5555555']
var index = 0
var i = 0
var str2 = ''
var time1, time2
var font = document.getElementsByClassName('font')[0]

function add(index) {
str2 = this.str.slice(0, index)
console.log(str2)
font.innerHTML = str2
if (index <= this.str.length) {
setTime('add', 170)
} else {
clearTimeout(time1)
setTime('reduce', 1000)
}
}

function reduce(index) {
str2 = this.str.slice(0, index)
font.innerHTML = str2
if (index > 0) {
setTime('reduce', 50)
} else {
index = 0
clearTimeout(time1)
if (i < arr.length - 1) {
i++
} else i = 0
change(i)
}
}

// 定时器
function setTime(type, time) {
var that = this
time1 = setTimeout(function () {
if (type == 'add') {
index++
add(index)
} else {
index = index > 0 ? index - 1 : 0
reduce(that.index)
}
}, time);
}

function change(i) {
if (i < arr.length) {
this.str = arr[i]
add(index)
}
}

change(0)
</script>

</body>
</html>