fix(Tab): "scrollLeftTo" function could not handle decimal correctly (#12918)

This commit is contained in:
pany 2024-06-08 14:12:48 +08:00 committed by GitHub
parent 31aae0bfc5
commit eb0073c84b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,13 +10,15 @@ export function scrollLeftTo(
let count = 0;
const from = scroller.scrollLeft;
const frames = duration === 0 ? 1 : Math.round((duration * 1000) / 16);
let scrollLeft = from;
function cancel() {
cancelRaf(rafId);
}
function animate() {
scroller.scrollLeft += (to - from) / frames;
scrollLeft += (to - from) / frames;
scroller.scrollLeft = scrollLeft;
if (++count < frames) {
rafId = raf(animate);