GitXplorerGitXplorer
J

bs-breakpoints

public
23 stars
5 forks
2 issues

Commits

List of commits on branch master.
Unverified
0fae1164d526bafe338c85853a64071589181ed3

chore(release): 2.1.0

JJohann-S committed 6 months ago
Unverified
4dd1b7d92657e1aa9e1fa42dfac190a0356ce26a

docs(readme): add coverage badge

JJohann-S committed 6 months ago
Unverified
4614ab76f200d59092019aff0ac0f940c48b0fab

feat(ci): add coveralls

JJohann-S committed 6 months ago
Unverified
5beb382965621ad9d9211340d3adc9bf1999e860

fix(coverage): add reporters

JJohann-S committed 6 months ago
Unverified
bb7ac5640556b2323c6636238316e152975a7375

feat(core): allow to know if gt or lt compare to current breakpoint

JJohann-S committed 6 months ago
Unverified
2d7bf23e101ac7c8c43d6c2578947b026308d614

fix(package): change bootstrap support

JJohann-S committed 6 months ago

README

The README file for this repository.

bs-breakpoints

npm version Build Status Coveralls JS gzip size

A plugin which detect Bootstrap 5 breakpoints and emit when there is a change.

You can use it on React and Angular too because this plugin is written with the most used JavaScript framework: VanillaJS.

Features:

  • Works with Bootstrap 5
  • Works without dependencies
  • Detect custom breakpoints in CSS properties
  • Built in ES and UMD to be used everywhere
  • Small, only 2kb and less if you gzip it
  • Allow to add or remove breakpoints

Table of contents

Install

With npm or yarn

npm install bs-breakpoints --save

// yarn
yarn add bs-breakpoints

CDN

CDN Link
jsDelivr ES version https://cdn.jsdelivr.net/npm/bs-breakpoints/dist/bs-breakpoints.js
jsDelivr UMD version https://cdn.jsdelivr.net/npm/bs-breakpoints/dist/bs-breakpoints.umd.cjs

How to use it

You should wait for the document ready event and call the init method to detect breakpoint changes. We expose one global variable available everywhere: bsBreakpoints

In browser with UMD version:

document.addEventListener('DOMContentLoaded', function () {
  const detector = new bsBreakpoints.BreakpointDetector();
})

Use it with npm

import { BreakpointDetector } from 'bs-breakpoints';

For UMD examples check out this file.

This library is ES and UMD ready so you can use it everywhere.

Methods

constructor

Will detect the current breakpoint and emit init.bs.breakpoint event.

It'll add a listener on the window resize event and emit new.bs.breakpoint event.

addBreakpoint

Allow you to add a new breakpoint.

import { BreakpointDetector } from 'bs-breakpoints';

const detector = new BreakpointDetector();

detector.addBreakpoint('largest', { min: 1600, max: Infinity });

removeBreakpoint

Allow you to remove an existing breakpoint.

import { BreakpointDetector } from 'bs-breakpoints';

const detector = new BreakpointDetector();

detector.removeBreakpoint('largest');

getBreakPoints

Detect and update breakpoints base on CSS properties

getCurrentBreakpoint

Detect and return the current breakpoint.

isGreaterThan

Allow you to know if the current breakpoint is greater than the one supplied.

isLowerThan

Allow you to know if the current breakpoint is lower than the one supplied.

Events

init.bs.breakpoint

Emitted just once when a new instance of BreakpointDetector is created.

This event contains the current breakpoint in the detail attribute.

new.bs.breakpoint

This event is emitted when there is a breakpoint changes.

This event contains the current breakpoint in the detail attribute.

License

MIT