Laptop-Thing/web/node_modules/.vite/deps/svelte_animate.js

50 lines
1.4 KiB
JavaScript
Raw Permalink Normal View History

2024-11-27 12:35:48 -05:00
import {
cubicOut
} from "./chunk-YERFD2CZ.js";
import "./chunk-UGBVNEQM.js";
// node_modules/svelte/src/animate/index.js
function flip(node, { from, to }, params = {}) {
var style = getComputedStyle(node);
var zoom = get_zoom(node);
var transform = style.transform === "none" ? "" : style.transform;
var [ox, oy] = style.transformOrigin.split(" ").map(parseFloat);
var dsx = from.width / to.width;
var dsy = from.height / to.height;
var dx = (from.left + dsx * ox - (to.left + ox)) / zoom;
var dy = (from.top + dsy * oy - (to.top + oy)) / zoom;
var { delay = 0, duration = (d) => Math.sqrt(d) * 120, easing = cubicOut } = params;
return {
delay,
duration: typeof duration === "function" ? duration(Math.sqrt(dx * dx + dy * dy)) : duration,
easing,
css: (t, u) => {
var x = u * dx;
var y = u * dy;
var sx = t + u * dsx;
var sy = t + u * dsy;
return `transform: ${transform} scale(${sx}, ${sy}) translate(${x}px, ${y}px);`;
}
};
}
function get_zoom(element) {
if ("currentCSSZoom" in element) {
return (
/** @type {number} */
element.currentCSSZoom
);
}
var current = element;
var zoom = 1;
while (current !== null) {
zoom *= +getComputedStyle(current).zoom;
current = /** @type {Element | null} */
current.parentElement;
}
return zoom;
}
export {
flip
};
//# sourceMappingURL=svelte_animate.js.map