Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phucbm/match-media-screen

Observe window.resize and fire corresponding events with given object data.
https://github.com/phucbm/match-media-screen

Last synced: 25 days ago
JSON representation

Observe window.resize and fire corresponding events with given object data.

Awesome Lists containing this project

README

        

# Match Media Screen

[![release](https://badgen.net/github/release/phucbm/match-media-screen/)](https://github.com/phucbm/match-media-screen/releases/latest)
[![minified](https://badgen.net/badge/minified/3KB/cyan)](https://www.jsdelivr.com/package/gh/phucbm/match-media-screen)
[![jsdelivr](https://data.jsdelivr.com/v1/package/gh/phucbm/match-media-screen/badge?style=rounded)](https://www.jsdelivr.com/package/gh/phucbm/match-media-screen)
[![npm weekly download](https://badgen.net/npm/dm/match-media-screen)](https://www.npmjs.com/package/match-media-screen)
[![license](https://badgen.net/github/license/phucbm/match-media-screen/)](https://github.com/phucbm/match-media-screen/blob/main/LICENSE)
[![Netlify Status](https://api.netlify.com/api/v1/badges/1cc036c8-c6d1-4404-adbd-52182abbdd78/deploy-status)](https://app.netlify.com/sites/match-media-screen/deploys)

> Observe window.resize and fire corresponding events with given object data.

## Installation

### NPM Package

Install NPM package

```shell
npm i match-media-screen
```

Import

```js
import {MatchMediaScreen} from "match-media-screen";
```

### Download

👉 Self hosted - [Download the latest release](https://github.com/phucbm/match-media-screen/releases/latest)

```html

```

👉 CDN Hosted - [jsDelivr](https://www.jsdelivr.com/package/gh/phucbm/match-media-screen)

```html

```

## Usage

Demo: https://match-media-screen.netlify.app

```js
new MatchMediaScreen({
object: {
value: 'desktop',
responsive: [
{
breakpoint: 1024, // same as `@media only screen and (max-width:1024px)`
settings: {
value: 'tablet',
}
},
{
breakpoint: 480,
settings: {
value: 'mobile',
}
}
],
},
debounce: 100, // [ms] debounce time on resize event
// fire everytime a matched breakpoint is found
onMatched: data => {
console.table(data)
document.querySelector('[data-code]').innerHTML = JSON.stringify(data);
},
// fire on every resize event with debouce time of 100ms
onUpdate: data => {
console.log(data)
}
});
```

## Deployment

### Dev server

Run dev server

```shell
npm run dev
```

### Generate production files

Generate UMD and module version

```shell
npm run prod
```

### Build sites

Build production site

```shell
npm run build
```

## License

[MIT License](https://github.com/phucbm/match-media-screen/blob/main/LICENSE)

Copyright (c) 2022 Phuc Bui