This commit is contained in:
2025-10-23 11:52:03 +08:00
parent ca5e9c6122
commit 0c1021e13c
4 changed files with 19 additions and 19 deletions

View File

@ -57,7 +57,7 @@ const scroll = (tableBody) => {
setInterval(() => {
if (isScroll) {
tableDom.scrollTop += 3; //设置滚动速度
tableDom.scrollTop += 10; //设置滚动速度
if (tableDom.clientHeight + tableDom.scrollTop == tableDom.scrollHeight) {
tableDom.scrollTop = 0;
}