Files
Webklar.com/node_modules/framer-motion/dist/es/animation/sequence/utils/calc-time.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

24 lines
644 B
JavaScript

/**
* Given a absolute or relative time definition and current/prev time state of the sequence,
* calculate an absolute time for the next keyframes.
*/
function calcNextTime(current, next, prev, labels) {
if (typeof next === "number") {
return next;
}
else if (next.startsWith("-") || next.startsWith("+")) {
return Math.max(0, current + parseFloat(next));
}
else if (next === "<") {
return prev;
}
else if (next.startsWith("<")) {
return Math.max(0, prev + parseFloat(next.slice(1)));
}
else {
return labels.get(next) ?? current;
}
}
export { calcNextTime };