document.addEventListener('DOMContentLoaded', () => { class JoeMtitle extends HTMLElement { constructor() { super(); this.innerHTML = ` ${this.getAttribute('title') || '默认标题'} `; } } window.customElements.define('joe-mtitle', JoeMtitle); class JoeDplayer extends HTMLElement { constructor() { super(); this.options = { src: this.getAttribute('src'), player: this.getAttribute('player') }; this.render(); } render() { if (this.options.src) this.innerHTML = ``; else this.innerHTML = '播放地址未填写!'; } } window.customElements.define('joe-dplayer', JoeDplayer); class JoeBilibili extends HTMLElement { constructor() { super(); this.bvid = this.getAttribute('bvid'); this.render(); } render() { if (this.bvid) this.innerHTML = ``; else this.innerHTML = 'Bvid未填写!'; } } window.customElements.define('joe-bilibili', JoeBilibili); class JoeMp3 extends HTMLElement { constructor() { super(); this.options = { name: this.getAttribute('name'), url: this.getAttribute('url'), theme: this.getAttribute('theme') || '#1989fa', cover: this.getAttribute('cover'), autoplay: this.getAttribute('autoplay') ? true : false }; this.render(); } render() { if (!this.options.url) return (this.innerHTML = '音频地址未填写!'); this.innerHTML = '
'; new APlayer({ container: this.querySelector('div'), theme: this.options.theme, autoplay: this.options.autoplay, audio: [ { url: this.options.url, name: this.options.name, cover: this.options.cover } ] }); } } window.customElements.define('joe-mp3', JoeMp3); class JoeMusic extends HTMLElement { constructor() { super(); this.options = { id: this.getAttribute('id'), color: this.getAttribute('color') || '#1989fa', autoplay: this.getAttribute('autoplay') ? true : false }; this.render(); } render() { if (!this.options.id) return (this.innerHTML = '网易云歌曲ID未填写!'); this.innerHTML = ''; fetch('https://api.i-meto.com/meting/api?server=netease&type=song&id=' + this.options.id).then(async response => { const audio = await response.json(); new APlayer({ container: this.querySelector('div'), lrcType: 3, theme: this.options.color, autoplay: this.options.autoplay, audio }); }); } } window.customElements.define('joe-music', JoeMusic); class JoeMlist extends HTMLElement { constructor() { super(); this.options = { id: this.getAttribute('id'), color: this.getAttribute('color') || '#1989fa', autoplay: this.getAttribute('autoplay') ? true : false }; this.render(); } render() { if (!this.options.id) return (this.innerHTML = '网易云歌单ID未填写!'); this.innerHTML = ''; fetch('https://api.i-meto.com/meting/api?server=netease&type=playlist&id=' + this.options.id).then(async response => { const audio = await response.json(); new APlayer({ container: this.querySelector('div'), lrcType: 3, theme: this.options.color, autoplay: this.options.autoplay, audio }); }); } } window.customElements.define('joe-mlist', JoeMlist); class JoeAbtn extends HTMLElement { constructor() { super(); this.options = { icon: this.getAttribute('icon') || '', color: this.getAttribute('color') || '#ff6800', href: this.getAttribute('href') || '#', radius: this.getAttribute('radius') || '17.5px', content: this.getAttribute('content') || '多彩按钮' }; this.innerHTML = ` ${this.options.content} `; } } window.customElements.define('joe-abtn', JoeAbtn); class JoeAnote extends HTMLElement { constructor() { super(); this.options = { icon: this.getAttribute('icon') || 'fa-download', href: this.getAttribute('href') || '#', type: /^secondary$|^success$|^warning$|^error$|^info$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'secondary', content: this.getAttribute('content') || '标签按钮' }; this.innerHTML = ` ${this.options.content} `; } } window.customElements.define('joe-anote', JoeAnote); class JoeDotted extends HTMLElement { constructor() { super(); this.startColor = this.getAttribute('startColor') || '#ff6c6c'; this.endColor = this.getAttribute('endColor') || '#1989fa'; this.innerHTML = ` `; } } window.customElements.define('joe-dotted', JoeDotted); class JoeHide extends HTMLElement { constructor() { super(); this.render(); } render() { this.innerHTML = '此处内容作者设置了 回复 可见'; this.$button = this.querySelector('i'); const $comment = document.querySelector('.joe_comment'); const $header = document.querySelector('.joe_header'); if (!$comment || !$header) return; this.$button.addEventListener('click', () => { const top = $comment.offsetTop - $header.offsetHeight - 15; window.scrollTo({ top, behavior: 'smooth' }); }); } } window.customElements.define('joe-hide', JoeHide); class JoeCardDefault extends HTMLElement { constructor() { super(); const _temp = this.querySelector('._temp'); this.options = { width: this.getAttribute('width') || '100%', label: this.getAttribute('label') || '卡片标题', content: _temp.innerHTML.trim().replace(/^(