npm.io
0.2.1 • Published 2 years ago

mqfunctions

Licence
MIT
Version
0.2.1
Deps
1
Size
40 kB
Vulns
0
Weekly
0

mqfunctions

Test Status License MIT npm version codecov

JavaScript library to manage matchMedia handlers.

Install

npm install mqfunctions

Use

import { createMqFunctions } from 'mqfunctions'

const mqf = createMqFunctions('(min-width: 768px)')

// Add matchMedia handler
mqf.add('function-01', (event) => {
  if (event.matches) {
    console.log('Resized window to PC size!')
  } else {
    console.log('Resized window to SP size!')
  }
})

// Run handler arbitrarily
mqf.run('function-01')

// Remove handler
mqf.remove('function-01')

License

MIT License.

Keywords