2018-03-11 17:17:35 +00:00
|
|
|
component AudioPlayer
|
2018-03-11 19:22:33 +00:00
|
|
|
#audio-player
|
2018-03-11 17:17:35 +00:00
|
|
|
.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")
|
|
|
|
|
2018-03-11 19:29:22 +00:00
|
|
|
input#audio-player-volume.action(data-action="setVolume", data-trigger="input", type="range", min="0", max="100", value="50")
|