JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q29592F
  • License MIT

Execute JS code from given breakpoints.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rwdjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    rwdjs

    Execute JS code from given breakpoints.

    <div id="log"></div>
    import Rwd from './node_modules/rwdjs/src/rwd.js';
    
    const log = document.getElementById('log');
    const rwd = new Rwd({
      breakpoints: {
        992: {
          name: 'small',
          notName: 'large',
          type: 'max-width',
          match: () => {
            // Matching code.
            log.innerHTML += "<p>Breakpoint reached.</p>";
          },
          else: () => {
            // When breakpoint is not matching.
            log.innerHTML += '<p>Breakpoint not active, execute the "else" code</p>';
          }
        }
      }
    });