@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
36 lines • 999 B
JavaScript
/**
* 2024-09-07: Migrated from the same folder in fps-library-v2/common/Images/...
*/
export const hoverZoomChoices = [
{ index: 0, key: '1.1', text: "1.1 x" },
{ index: 1, key: '1.2', text: "1.2 x" },
{ index: 9, key: '1.0', text: "1.0 - no zoom animation" },
];
export const hoverZoomChoicesAll = [
{ index: 0, key: '1.1', text: "1.1 x" },
{ index: 1, key: '1.2', text: "1.2 x" },
{ index: 2, key: '1.5', text: "1.5 x" },
{ index: 3, key: '2.0', text: "2.0 x" },
{ index: 9, key: '1.0', text: "1.0 - no zoom animation" },
];
export function getHoverZoom(findMe) {
if (findMe === '1.0') {
return 1;
}
else if (findMe === '1.1') {
return 1.1;
}
else if (findMe === '1.2') {
return 1.2;
}
else if (findMe === '1.5') {
return 1.2;
}
else if (findMe === '2.0') {
return 1.2;
}
else {
return 0;
}
}
//# sourceMappingURL=hoverZoom.js.map