liangjiahao 8f813121f8 添加查看按钮的窗口 3 lat temu
..
CHANGELOG.md fcedc92fa0 完成了基础 3 lat temu
LICENSE.md fcedc92fa0 完成了基础 3 lat temu
README.md fcedc92fa0 完成了基础 3 lat temu
index.cjs.js fcedc92fa0 完成了基础 3 lat temu
index.es.mjs fcedc92fa0 完成了基础 3 lat temu
package.json 8f813121f8 添加查看按钮的窗口 3 lat temu

README.md

Watch Size PostCSS

NPM Version Build Status Support Chat

Watch Size lets you watch the size changes of a DOM element using the watchSize function.

Usage

Add Watch Size to your project:

npm install watch-size

Use watchSize() to rewrite your queries:

import watchSize from 'watch-size';

const stop = watchSize(
  document.querySelector('.box:nth-child(2)')
  ({ width, height }) => { /* callback */ }
);

/* use stop() to end listening */

How does it work?

The watchSize function attaches hidden, over-sized DOM elements to your target with scroll listeners that are triggered whenever the element resizes. This allows the listener to avoid polling, and to truly respond to size changes. This technique can be used in all browsers going back to Internet Explorer 9.

The entire script is about 400 bytes when minified and gzipped.