Last active
December 31, 2023 15:29
-
-
Save josephmazigo/9bb12c6f032e7639aba4f5098445c700 to your computer and use it in GitHub Desktop.
Audio Player
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="player"> | |
<ul> | |
<li class="cover"><img src="http://i1285.photobucket.com/albums/a583/TheGreatOzz1/Hosted-Images/Noisy-Freeks-Image_zps4kilrxml.png"/></li> | |
<li class="info"> | |
<h1>The Noisy Freaks</h1> | |
<h4>Premiere</h4> | |
<h2>I Need You Back</h2> | |
<div class="button-items"> | |
<audio id="music" preload="auto" loop="false"> | |
<source src="https://dl.dropbox.com/s/oswkgcw749xc8xs/The-Noisy-Freaks.mp3?dl=1" type="audio/mp3"> | |
<source src="https://dl.dropbox.com/s/75jpngrgnavyu7f/The-Noisy-Freaks.ogg?dl=1" type="audio/ogg"> | |
</audio> | |
<div id="slider"><div id="elapsed"></div></div> | |
<p id="timer">0:00</p> | |
<div class="controls"> | |
<span class="expend"><svg class="step-backward" viewBox="0 0 25 25" xml:space="preserve"> | |
<g><polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/></g> | |
</svg></span> | |
<svg id="play" viewBox="0 0 25 25" xml:space="preserve"> | |
<defs><rect x="-49.5" y="-132.9" width="446.4" height="366.4"/></defs> | |
<g><circle fill="none" cx="12.5" cy="12.5" r="10.8"/> | |
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/> | |
</g> | |
</svg> | |
<svg id="pause" viewBox="0 0 25 25" xml:space="preserve"> | |
<g> | |
<rect x="6" y="4.6" width="3.8" height="15.7"/> | |
<rect x="14" y="4.6" width="3.9" height="15.7"/> | |
</g> | |
</svg> | |
<span class="expend"><svg class="step-foreward" viewBox="0 0 25 25" xml:space="preserve"> | |
<g><polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/></g> | |
</svg></span> | |
</div> | |
</div> | |
</li> | |
</ul> | |
</div> | |
<p class="social"><a target="_blank" href="https://twitter.com/kirkbyo_" class="twitter">Twitter</a> | <a target="_blank" href="https://github.com/kirkbyo" class="github">Github</a></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var music = document.getElementById("music"); | |
var playButton = document.getElementById("play"); | |
var pauseButton = document.getElementById("pause"); | |
var playhead = document.getElementById("elapsed"); | |
var timeline = document.getElementById("slider"); | |
var timer = document.getElementById("timer"); | |
var duration; | |
pauseButton.style.visibility = "hidden"; | |
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth; | |
music.addEventListener("timeupdate", timeUpdate, false); | |
function timeUpdate() { | |
var playPercent = timelineWidth * (music.currentTime / duration); | |
playhead.style.width = playPercent + "px"; | |
var secondsIn = Math.floor(((music.currentTime / duration) / 3.5) * 100); | |
if (secondsIn <= 9) { | |
timer.innerHTML = "0:0" + secondsIn; | |
} else { | |
timer.innerHTML = "0:" + secondsIn; | |
} | |
} | |
playButton.onclick = function() { | |
music.play(); | |
playButton.style.visibility = "hidden"; | |
pause.style.visibility = "visible"; | |
} | |
pauseButton.onclick = function() { | |
music.pause(); | |
playButton.style.visibility = "visible"; | |
pause.style.visibility = "hidden"; | |
} | |
music.addEventListener("canplaythrough", function () { | |
duration = music.duration; | |
}, false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Insperation: https://dribbble.com/shots/1962035-Freebie-Music-Player-Dark-Version | |
body { | |
background-color: #EDEDED; | |
} | |
$player-height: 190px; | |
$player-width: 430px; | |
h1 { | |
font-family: 'Open Sans', sans-serif; | |
font-size: 13pt; | |
font-weight: 600; | |
text-transform: uppercase; | |
color: white; | |
cursor: default; | |
} | |
h4 { | |
font-family: 'Open Sans', sans-serif; | |
font-size: 8pt; | |
font-weight: 400; | |
cursor: default; | |
} | |
h2 { | |
font-family: 'Open Sans', sans-serif; | |
font-size: 13pt; | |
font-weight: 300; | |
color: white; | |
cursor: default; | |
} | |
@mixin unselectable() { | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
.player { | |
height: $player-height; | |
width: $player-width; | |
background-color: #1E2125; | |
position: absolute; | |
@include unselectable(); | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
-webkit-transform: translate(-50%, -50%); | |
ul { | |
list-style: none; | |
li { | |
display: inline-block; | |
} | |
} | |
} | |
.cover { | |
position: absolute; | |
top: 0; | |
left: 0; | |
img { | |
height: $player-height; | |
width: $player-height; | |
} | |
} | |
.info { | |
h1 { | |
margin-top: 15px; | |
margin-left: 180px; | |
line-height: 0; | |
} | |
h4 { | |
margin-left: 180px; | |
line-height: 20px; | |
color: #636367; | |
} | |
h2 { | |
margin-left: 180px; | |
} | |
} | |
.button-items { | |
margin-left: 180px; | |
} | |
#slider { | |
width: 182px; | |
height: 4px; | |
background: #151518; | |
border-radius: 2px; | |
div { | |
width: 4px; | |
height: 4px; | |
margin-top: 1px; | |
background: #EF6DBC; | |
border-radius: 2px; | |
} | |
} | |
#timer { | |
color: #494B4E; | |
line-height: 0; | |
font-size: 9pt; | |
float: right; | |
font-family: Arial, Sans-Serif; | |
} | |
.controls { | |
margin-top: 20px; | |
svg:nth-child(2) { | |
margin-left: 5px; | |
margin-right: 5px; | |
} | |
} | |
#play { | |
padding: 0 3px; | |
width: 30px; | |
height: 30px; | |
x: 0px; | |
y: 0px; | |
enable-background: new 0 0 25 25; | |
g { | |
stroke: #FEFEFE; | |
stroke-width: 1; | |
stroke-miterlimit: 10; | |
path { | |
fill: #FEFEFE; | |
} | |
} | |
} | |
#play:hover { | |
cursor: pointer; | |
g { | |
stroke: #8F4DA9; | |
cursor: pointer; | |
path { | |
fill: #9b59b6; | |
cursor: pointer; | |
} | |
} | |
} | |
.step-backward { | |
width: 18px; | |
height: 18px; | |
x: 0px; | |
y: 0px; | |
enable-background: new 0 0 25 25; | |
margin-bottom: 5px; | |
g polygon { | |
fill: #FEFEFE; | |
} | |
} | |
.step-foreward { | |
width: 18px; | |
height: 18px; | |
x: 0px; | |
y: 0px; | |
enable-background: new 0 0 25 25; | |
margin-bottom: 5px; | |
g polygon { | |
fill: #FEFEFE; | |
} | |
} | |
#pause { | |
x: 0px; | |
y: 0px; | |
enable-background: new 0 0 25 25; | |
width: 30px; | |
height: 30px; | |
position: absolute; | |
margin-left: -38px; | |
cursor: pointer; | |
rect { | |
fill: white; | |
} | |
} | |
#pause:hover rect { | |
fill: #8F4DA9; | |
} | |
.step-backward g polygon:hover, .step-foreward g polygon:hover { | |
fill: #EF6DBC; | |
cursor: pointer; | |
} | |
.social { | |
text-align: center; | |
} | |
.twitter { | |
color: #BDBDBD; | |
font-family: sans-serif; | |
text-decoration: none; | |
&:hover { | |
color: #ecf0f1; | |
} | |
} | |
.github { | |
color: #BDBDBD; | |
font-family: sans-serif; | |
text-decoration: none; | |
&:hover { | |
color: #ecf0f1; | |
} | |
} | |
p { | |
color: #BDBDBD; | |
} | |
#skip { | |
float: right; | |
margin-top: 10px; | |
p { | |
color: #2980b9; | |
} | |
p:hover { | |
color: #e74c3c; | |
cursor: pointer; | |
} | |
} | |
.expend { | |
padding: 0.5px; | |
cursor: pointer; | |
svg:hover g polygon { | |
fill: #EF6DBC; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment