This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/views/local.htm

32 lines
837 B
HTML

<div class="do-mod-local" anot="local">
<div class="toolbar">
本地音乐({{list.length}}首)<span class="refresh" :click="refresh">重新扫描</span>
</div>
<div class="table">
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>歌名</th>
<th>歌手</th>
<th>专辑</th>
<th>时长</th>
</tr>
</thead>
<tbody>
<tr
:class="{active: it.id === curr}"
:for="it in list"
:dblclick="play($index)">
<td class="ac"><i class="stat s-icon-music"></i></td>
<td :text="it.title"></td>
<td class="ac" :text="it.artist"></td>
<td class="ac" :text="it.album"></td>
<td class="ac" :text="it.duration | time"></td>
</tr>
</tbody>
</table>
</div>
</div>
一个音乐播放器, 主打本地音乐播放。支持 自动歌词/自动封面/均衡器等常见功能。
JavaScript 60.1%
SCSS 19.2%
HTML 16.9%
CSS 3.8%