UNPKG

mt-music-player

Version:

A simply web music player app.

19 lines (16 loc) 337 B
const LIFE_TIME = 1000; class AppSplash extends HTMLElement { constructor() { super(); const now = performance.now(); if (now > LIFE_TIME) { this.end(); } else { setTimeout(this.end.bind(this), LIFE_TIME - now); } } end() { this.remove(); } } customElements.define('app-splash', AppSplash);