17 lines
622 B
Plaintext
Raw Normal View History

2018-03-11 18:17:35 +01:00
component AudioPlayer
2018-03-11 20:22:33 +01:00
#audio-player
2018-03-11 21:28:07 +01:00
#audio-player-controls
button#audio-player-prev.audio-player-side-button
RawIcon("step-backward")
.audio-player-play-pause-container
button#audio-player-play.action(data-action="resumeAudio", data-trigger="click")
RawIcon("play")
button#audio-player-pause.fade-out.action(data-action="pauseAudio", data-trigger="click")
RawIcon("pause")
button#audio-player-next.audio-player-side-button
RawIcon("step-forward")
2018-03-11 18:17:35 +01:00
2018-03-11 20:29:22 +01:00
input#audio-player-volume.action(data-action="setVolume", data-trigger="input", type="range", min="0", max="100", value="50")