mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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;
|
let count = 0;
|
||||||
const from = scroller.scrollLeft;
|
const from = scroller.scrollLeft;
|
||||||
const frames = duration === 0 ? 1 : Math.round((duration * 1000) / 16);
|
const frames = duration === 0 ? 1 : Math.round((duration * 1000) / 16);
|
||||||
|
let scrollLeft = from;
|
||||||
|
|
||||||
function cancel() {
|
function cancel() {
|
||||||
cancelRaf(rafId);
|
cancelRaf(rafId);
|
||||||
}
|
}
|
||||||
|
|
||||||
function animate() {
|
function animate() {
|
||||||
scroller.scrollLeft += (to - from) / frames;
|
scrollLeft += (to - from) / frames;
|
||||||
|
scroller.scrollLeft = scrollLeft;
|
||||||
|
|
||||||
if (++count < frames) {
|
if (++count < frames) {
|
||||||
rafId = raf(animate);
|
rafId = raf(animate);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user