❤️ 我的收藏 ({{ favorites.length }})
暂无收藏,快去搜索喜欢的歌吧
📁 播放列表 ({{ playlists.length }})
暂无播放列表
{{ pl.name }}
{{ pl.songs.length }} 首歌曲
{{ currentPlaylist.name }}
{{ currentPlaylist.songs.length }} 首
列表为空,去搜索并添加歌曲吧
♫
{{ idx+1 }}
{{ song.title }}
{{ song.artist }}
{
const el = e.currentTarget;
const touch = e.touches[0];
el._startX = touch.clientX - el.offsetLeft;
el._startY = touch.clientY - el.offsetTop;
}"
@touchmove="(e) => {
const el = e.currentTarget;
const touch = e.touches[0];
let left = touch.clientX - el._startX;
let top = touch.clientY - el._startY;
left = Math.max(0, Math.min(window.innerWidth - el.offsetWidth, left));
top = Math.max(0, Math.min(window.innerHeight - el.offsetHeight, top));
el.style.left = left + 'px';
el.style.top = top + 'px';
el.style.right = 'auto';
el.style.bottom = 'auto';
}">
{{ lyrics[currentLyricIdx].text }}
{{ lyrics[currentLyricIdx].text }}