@shop25/iframe
v1.1.0
Published
```bash npm i @shop25/iframe ```
Downloads
82
Readme
Install
npm i @shop25/iframe
Usage
import { VisibleIframe, InvisibleIframe } from '@shop25/iframe';
const mountPoint = document.querySelector('.js-mount');
const iframe = new VisibleIframe({
mountElement: mountPoint,
src: `http://localhost`,
});
iframe.delete() # void;
iframe.on('windowOrCustomEventName', (event: Event | CustomEvent) => {
console.log(event);
})
iframe.getWindow() # Window;