Code Monkey home page Code Monkey logo

bs-breakpoints's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.