Skip to content
This repository was archived by the owner on Jul 17, 2026. It is now read-only.

Commit a051978

Browse files
authored
Merge pull request #961 from MoYingJi/pr/f
fix(FullPlayer): lyricsBlendMode 在重新打开 FullPlayer 后不生效
2 parents eaf43b4 + ff10863 commit a051978

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/Player/FullPlayer.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
v-if="statusStore.showFullPlayer"
66
:style="{
77
cursor: statusStore.playerMetaShow || isShowComment ? 'auto' : 'none',
8+
'--lyric-blend-mode': settingStore.lyricsBlendMode,
89
}"
910
:class="['full-player', { 'show-comment': isShowComment && !statusStore.pureLyricMode }]"
1011
@mouseleave="playerLeave"
@@ -291,7 +292,7 @@ onBeforeUnmount(() => {
291292
height: 100%;
292293
display: flex;
293294
flex-direction: column;
294-
mix-blend-mode: v-bind("settingStore.lyricsBlendMode");
295+
mix-blend-mode: var(--lyric-blend-mode);
295296
transition:
296297
width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
297298
opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

0 commit comments

Comments
 (0)