-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path083.数字滚动.html
58 lines (51 loc) · 2.05 KB
/
083.数字滚动.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/global.css">
</head>
<body>
<h1>1254882823568.222</h1>
<script type="module">
let h1Dom = document.querySelector('h1');
/**
* @param {HTMLDivElement} dom 元素
* @param {object} options
* @param {number} options.time 持续时间
* @param {number} options.start 开始数字
* @param {number} options.end 结束数字
* @param {(val:number)=>number} options.format 格式化
*/
function numScroll(dom, options) {
let targetValue = options.end ?? dom.textContent; // 获取元素文本内容
let decimalCount = targetValue.split('.')?.[1]?.length ?? 0 // 获取小数位后几位
let step = (+targetValue / options.time) * 10; // 步幅
let temp = options.start ?? 0; // 开始数字
let intervalId = setInterval(function () {
dom.textContent = options.format?.(temp.toFixed(decimalCount)) ?? temp.toFixed(decimalCount); // 回显临时数据
temp += step; // 每次变更临时数据
if (temp > +targetValue) {
dom.textContent = options.format?.(+targetValue) ?? targetValue // 设置成目标值
clearInterval(intervalId); // 清除定时器
}
}, 1);
}
/** 千分位
*/
function thousands(num) {
const str = num + '';
// 分割小数
const spa = str.split('.');
// 整数部分结果
let res = spa[0].replace(/\d{1,3}(?=(\d{3})+$)/g, (s) => s + ',');
// 补上小数
if (spa.length > 1)
res += '.' + spa[1];
return res;
}
numScroll(h1Dom, { time: 1500, format: thousands, start: 5000 })
</script>
</body>
</html>