diff --git a/src/components/ButtonIcon.vue b/src/components/ButtonIcon.vue index efa14d7..8b70b26 100644 --- a/src/components/ButtonIcon.vue +++ b/src/components/ButtonIcon.vue @@ -28,6 +28,7 @@ button { } &:hover { background: var(--color-secondary-bg-for-transparent); + opacity: 0.88; } &:active { transform: scale(0.92); diff --git a/src/locale/lang/en.js b/src/locale/lang/en.js index 19cea7f..4b2a610 100644 --- a/src/locale/lang/en.js +++ b/src/locale/lang/en.js @@ -142,6 +142,7 @@ export default { clearSongsCache: "Clear Songs Cache", cacheCount: "Cached {song} songs ({size})", showLyricsTranslation: "Show lyrics translation", + showLyricsDynamicBackground: "Show lyrics dynamic background", minimizeToTray: "Minimize to tray", showGitHubIcon: "Show GitHub icon", showUnavailableSongInGreyStyle: "Show unavailable song in grey style", diff --git a/src/locale/lang/zh-CN.js b/src/locale/lang/zh-CN.js index 384a702..417aae8 100644 --- a/src/locale/lang/zh-CN.js +++ b/src/locale/lang/zh-CN.js @@ -143,6 +143,7 @@ export default { clearSongsCache: "清除歌曲缓存", cacheCount: "已缓存 {song} 首 ({size})", showLyricsTranslation: "显示歌词翻译", + showLyricsDynamicBackground: "显示歌词动态背景", minimizeToTray: "最小化到托盘", showGitHubIcon: "显示 GitHub 图标", showUnavailableSongInGreyStyle: "显示不可播放的歌曲为灰色", diff --git a/src/store/initLocalStorage.js b/src/store/initLocalStorage.js index 1debf57..fd5a7d7 100644 --- a/src/store/initLocalStorage.js +++ b/src/store/initLocalStorage.js @@ -15,6 +15,7 @@ let localStorage = { automaticallyCacheSongs: false, nyancatStyle: false, showLyricsTranslation: true, + showLyricsDynamicBackground: false, minimizeToTray: false, enableDiscordRichPresence: false, }, diff --git a/src/views/lyrics.vue b/src/views/lyrics.vue index 1f89eef..eb50a46 100644 --- a/src/views/lyrics.vue +++ b/src/views/lyrics.vue @@ -1,6 +1,21 @@