rwdjs

2.0.3 • Public • Published

rwdjs

Execute JS code from given breakpoints.

Install

npm install rwdjs

Usage

<ol id="log"></ol>
// Get dom element.
const log = document.getElementById('log');

Rwd.init({
  breakpoints: {
    992: {
      name: 'small',
      notName: 'large',
      type: 'max-width',
      match: () => {
        // Matching code.
        log.innerHTML += "<li>Breakpoint reached.</li>";
      },
      else: () => {
        // Breakpoint is not matching.
        log.innerHTML += '<li>Breakpoint not active, execute the "else" code</li>';
      }
    }
  }
});

Changelog

2.0.2

Fix iOS issue with media query syntax.

2.0.0

Init function is now static, Rwd can be executed without create instance.

Readme

Keywords

Package Sidebar

Install

npm i rwdjs

Weekly Downloads

0

Version

2.0.3

License

MIT

Unpacked Size

9.82 kB

Total Files

8

Last publish

Collaborators

  • cyril-lamotte