加载中...
79 |请稍候
80 |├── README.md ├── player ├── assets │ ├── images │ │ ├── none.webp │ │ └── loading.svg │ ├── fonts │ │ ├── Nebulove.woff2 │ │ ├── pacifico.woff2 │ │ └── MaterialSymbols.woff2 │ ├── css │ │ └── style.css │ └── js │ │ └── script.js ├── favicon.svg └── index.html ├── update.json ├── assets ├── material-icons.css └── logo.svg ├── index.html ├── style.css ├── app.js └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # YiClapOnline -------------------------------------------------------------------------------- /player/assets/images/none.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingyicute/YiClapOnline/HEAD/player/assets/images/none.webp -------------------------------------------------------------------------------- /player/assets/fonts/Nebulove.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingyicute/YiClapOnline/HEAD/player/assets/fonts/Nebulove.woff2 -------------------------------------------------------------------------------- /player/assets/fonts/pacifico.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingyicute/YiClapOnline/HEAD/player/assets/fonts/pacifico.woff2 -------------------------------------------------------------------------------- /player/assets/fonts/MaterialSymbols.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingyicute/YiClapOnline/HEAD/player/assets/fonts/MaterialSymbols.woff2 -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "202504300151", 3 | "updateTime": "2025年4月29日", 4 | "changes": [ 5 | "加入了全局深色主题,淡妆浓抹总相宜", 6 | "添加了收藏功能,可以记录下喜欢的歌", 7 | "优化了收藏列表,现在可以快速查看和管理收藏", 8 | "加入了使用 Clap ID 直接播放歌曲的功能", 9 | "优化了页面切换过渡效果,添加平滑淡入淡出动画", 10 | "改进了列表在移动设备上的显示,优化按钮布局", 11 | "实现了播放器资源预加载,提升首次播放体验", 12 | "调整了播放器背景色,修复了多个UI细节问题" 13 | ] 14 | } -------------------------------------------------------------------------------- /assets/material-icons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Material Symbols Rounded'; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: url('/player/assets/fonts/MaterialSymbols.woff2') format('woff2'); 6 | } 7 | 8 | .material-symbols-rounded { 9 | font-family: 'Material Symbols Rounded'; 10 | font-weight: normal; 11 | font-style: normal; 12 | font-size: 24px; 13 | line-height: 1; 14 | letter-spacing: normal; 15 | text-transform: none; 16 | display: inline-block; 17 | white-space: nowrap; 18 | word-wrap: normal; 19 | direction: ltr; 20 | -webkit-font-feature-settings: 'liga'; 21 | -webkit-font-smoothing: antialiased; 22 | } -------------------------------------------------------------------------------- /player/assets/images/loading.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /player/favicon.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /player/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 18 | 51 | 52 | 53 | 54 | 55 | 56 | 60 | 61 |请稍候
80 |