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

Commit 8827b08

Browse files
committed
fix(FullPlayer): lyricsBlendMode 在重新打开 FullPlayer 后不生效
1 parent b358226 commit 8827b08

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"
@@ -293,7 +294,7 @@ onBeforeUnmount(() => {
293294
height: 100%;
294295
display: flex;
295296
flex-direction: column;
296-
mix-blend-mode: v-bind('settingStore.lyricsBlendMode');
297+
mix-blend-mode: var(--lyric-blend-mode);
297298
transition:
298299
width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
299300
opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

0 commit comments

Comments
 (0)