Added play, pause, next and previous element generation.
Removed goals for generating seeking and volume control functions.
This commit is contained in:
25
src/styles/songplayer.css
Normal file
25
src/styles/songplayer.css
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user