mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 05:38:04 +00:00
feat: add reversed mode & improvements to lyrics animation (#1226)
* feat(reversed-mode): add reversed mode & improvements to lyrics animation * feat(lyrics-animation): improve `:active` style * fix: extra white space after artist in lyrics view * refactor: remove unused function * feat: slightly add duration of transition to improve replication from Apple Music style
This commit is contained in:
parent
3ea5446fcc
commit
42f3da9b37
9 changed files with 134 additions and 27 deletions
|
|
@ -132,6 +132,13 @@
|
|||
@click.native="player.switchShuffle"
|
||||
><svg-icon icon-class="shuffle"
|
||||
/></button-icon>
|
||||
<button-icon
|
||||
v-if="settings.enableReversedMode"
|
||||
:class="{ active: player.reversed, disabled: player.isPersonalFM }"
|
||||
:title="$t('player.reversed')"
|
||||
@click.native="player.switchReversed"
|
||||
><svg-icon icon-class="sort-up"
|
||||
/></button-icon>
|
||||
<div class="volume-control">
|
||||
<button-icon :title="$t('player.mute')" @click.native="player.mute">
|
||||
<svg-icon v-show="volume > 0.5" icon-class="volume" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue