Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mantou132/qr-scan

custom element <qr-scan>
https://github.com/mantou132/qr-scan

custom-elements qrcode scanner webcomponents

Last synced: about 1 month ago
JSON representation

custom element <qr-scan>

Awesome Lists containing this project

README

        

## ``

[Demo](https://mantou132.github.io/qr-scan/build/hello/)

## develop

install [rust](https://www.rust-lang.org/)

```bash
npm i
npm run example
```

## usage

```html

```

```css
qr-scan::part(bound) {
outline-color: blue;
}
```

```js
document.querySelector('qr-scan').addEventListener('success', console.log);
document.querySelector('qr-scan').addEventListener('notallow', console.log);
```

### api

```js
import QrScan from 'qr-scan';
new QrScan(300, 300).detect().then(console.log);
```