UNPKG

creepyface-custom-element

Version:

Creepyface Custom Element is a [Creepyface](https://github.com/4lejandrito/creepyface) wrapper that registers the `creepy-face` custom element.

15 lines (13 loc) 279 B
import creepyface from 'creepyface' customElements.define( 'creepy-face', class extends HTMLImageElement { connectedCallback() { this.cancel = creepyface(this) } disconnectedCallback() { this.cancel && this.cancel() } }, { extends: 'img' } )