Refactor and fix too long page bug
This commit is contained in:
parent
ef30dbd7f0
commit
78dd507be4
3 changed files with 15 additions and 12 deletions
|
|
@ -1,11 +1,12 @@
|
|||
export const getHeight = (e: HTMLElement): number => {
|
||||
// ignores margin collapse
|
||||
const computedStyle = getComputedStyle(e);
|
||||
|
||||
return (
|
||||
e.clientHeight +
|
||||
parseInt(computedStyle.marginTop) +
|
||||
parseInt(computedStyle.marginBottom) +
|
||||
parseInt(computedStyle.borderTopWidth) +
|
||||
parseInt(computedStyle.borderBottomWidth)
|
||||
parseFloat(computedStyle.marginTop) +
|
||||
parseFloat(computedStyle.marginBottom) +
|
||||
parseFloat(computedStyle.borderTopWidth) +
|
||||
parseFloat(computedStyle.borderBottomWidth)
|
||||
);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
export const mix = (from: number, to: number, q: number): number =>
|
||||
from * (1 - q) + to * q;
|
||||
from + (to - from) * q;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue