useSize
A hook that observes size change of an element.
Examples
Default usage
Try to resize the preview window
width: 786px, height: 72px
Basic usage
useSize can receive element
Pass in the DOM element
Try to resize the preview window
width: 1440px, height: 1388px
pass in the DOM element
useSize can receive a dom element as parameter. In SSR scenarios, you can pass in function `() => dom`
API
const size = useSize(target);
const size = useSize(target);
Params
Property | Description | Type | Default |
---|---|---|---|
target | DOM element | Element | (() => Element) | - |
Result
Property | Description | Type | Default |
---|---|---|---|
size | Size of the element | Accessor<{ width: number, height: number } | undefined> | { width: target.clientWidth, height: target.clientHeight } | undefined |