mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(Tab): "scrollLeftTo" function could not handle decimal correctly (#12918)
This commit is contained in:
parent
31aae0bfc5
commit
eb0073c84b
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user