mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-17 02:07:29 +08:00
feat: bili播放优化
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
<transition name="fade">
|
||||
<div v-if="showFullLyrics && !isLandscape" class="fullscreen-lyrics" :class="config.theme">
|
||||
<div class="fullscreen-header">
|
||||
<div class="song-title">{{ playMusic.name }}</div>
|
||||
<div class="song-title" v-html="playMusic.name"></div>
|
||||
<div class="artist-name">
|
||||
<span v-for="(item, index) in artistList" :key="index">
|
||||
{{ item.name }}{{ index < artistList.length - 1 ? ' / ' : '' }}
|
||||
@@ -97,7 +97,7 @@
|
||||
<!-- 歌曲信息 -->
|
||||
<div class="song-info">
|
||||
<div class="song-title-container">
|
||||
<h1 class="song-title">{{ playMusic.name }}</h1>
|
||||
<h1 class="song-title" v-html="playMusic.name"></h1>
|
||||
</div>
|
||||
<p class="song-artist">
|
||||
<span
|
||||
@@ -190,7 +190,7 @@
|
||||
<!-- 歌曲信息放置在顶部 -->
|
||||
<div class="landscape-song-info">
|
||||
<div class="flex flex-col flex-1">
|
||||
<h1 class="song-title">{{ playMusic.name }}</h1>
|
||||
<h1 class="song-title" v-html="playMusic.name"></h1>
|
||||
<p class="song-artist">
|
||||
<span
|
||||
v-for="(item, index) in artistList"
|
||||
|
||||
Reference in New Issue
Block a user