Added play, pause, next and previous element generation.

Removed goals for generating seeking and volume control functions.
This commit is contained in:
2022-04-15 18:37:41 -05:00
parent b94622dddf
commit f480eca822
4 changed files with 78 additions and 22 deletions

25
src/styles/songplayer.css Normal file
View File

@@ -0,0 +1,25 @@
.player-ctrl.play-btn {
box-sizing: border-box;
width: 60px;
height: 60px;
transition: 80ms all ease;
will-change: border-width;
cursor: pointer;
border-color: transparent transparent transparent white;
border-style: solid;
border-width: 60px 0px 30px 30px;
}
.player-ctrl.play-btn.paused {
border-style: double;
border-width: 0px 0px 0px 60px;
}
.player-ctrl.next {
border-style: none;
}
.player-ctrl.previous {
border-style: none;
}