请打开控制台(F12)查看
94 |├── .DS_Store
├── .gitattributes
├── .gitignore
├── README.md
├── build
├── .DS_Store
├── smusic.min.css
└── smusic.min.js
├── demo
├── data
│ ├── chengdu.lrc
│ ├── diamonds.lrc
│ ├── fightSong.lrc
│ └── oneCallAway.lrc
├── index.html
└── songList.js
├── gulpfile.js
├── package.json
└── src
├── js
├── mo.js
└── smusic.js
└── scss
└── smusic.scss
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/S-mohan/smusic/b3f20839042cd2ac7e92ba2ff9e485feba4e76e8/.DS_Store
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /node_modules
3 | /dist
4 | /.sass-cache
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Smusic
2 |
3 | 一款基于HTML5、Css3的列表式音乐播放器,包含列表,音量,进度,时间,歌词展示以及播放模式等功能,不依赖任何库
4 |
5 |
6 | > html5音乐列表播放器
Author:Smohan
Version:2.0.1
url: [https://smohan.net/lab/smusic](https://smohan.net/lab/smusic)
7 |
8 |
9 | 
10 |
11 |
12 | ### [项目地址][1]
13 |
14 | ### [DEMO][2]
15 |
16 |
17 | ### 使用方式
18 |
19 | #### (c)npm install
20 |
21 | #### gulp compile
22 |
23 | #### gulp build
24 |
25 | #### 使用
26 |
27 | 在`
项目地址: https://smohan.net/lab/smusic
81 |请打开控制台(F12)查看
94 |