A Pen by Coding And Stuff on CodePen.
Created
January 15, 2021 21:39
-
-
Save MAXA67/a886967162dff5e5d428a5a0bfdac3cf to your computer and use it in GitHub Desktop.
Audio Player
This file contains 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="container"> | |
<div class="glow"> | |
<div class="text-container"> | |
<span class="text">Audio Play</span> | |
<br> | |
<span class="text">Coding and Stuff</span> | |
<br> | |
<div class="playback_controls"> | |
<button onclick="skip('back')"><i class="fa fa-fast-backward"></i></button> | |
<button onclick="playpause()"><i class="fa fa-play"></i><i class="fa fa-pause"></i></button> | |
<button onclick="stop()"><i class="fa fa-stop"></i></button> | |
<button onclick="skip('fwd')"><i class="fa fa-fast-forward"></i></button> | |
</div> | |
<br> | |
<div id="seekbar"> | |
<input type="range" oninput="setPos(this.value)" id="seek" value="0" max=""> | |
</div> | |
<br> | |
<div class="volume_controls"> | |
<button id="mute" onclick="mute()"><i class="fa fa-volume-up"></i></button> | |
<input type="range" id="volume" oninput="setVolume(this.value)" min="0" max="1" step="0.01" value="1"> | |
</div> | |
</div> | |
</div> | |
</div> |
This file contains 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 song = new Audio; | |
var muted = false; | |
var vol = 1; | |
song.type = 'audio/mpeg'; | |
song.src = 'https://www.bensound.com/bensound-music/bensound-summer.mp3';//Audio file source url | |
function skip(time) { | |
if (time == 'back') { | |
song.currentTime = (song.currentTime - 5); | |
} else if (time == 'fwd') { | |
song.currentTime = (song.currentTime + 5); | |
} | |
} | |
function playpause() { | |
if (!song.paused) { | |
song.pause(); | |
} else { | |
song.play(); | |
} | |
} | |
function stop() { | |
song.pause(); | |
song.currentTime = 0; | |
document.getElementById('seek').value = 0; | |
} | |
function setPos(pos) { | |
song.currentTime = pos; | |
} | |
function mute() { | |
if (muted) { | |
song.volume = vol; | |
muted = false; | |
document.getElementById('mute').innerHTML = '<i class="fa fa-volume-up"></i>'; | |
} else { | |
song.volume = 0; | |
muted = true; | |
document.getElementById('mute').innerHTML = '<i class="fa fa-volume-off"></i>'; | |
} | |
} | |
function setVolume(volume) { | |
song.volume = volume; | |
vol = volume; | |
} | |
song.addEventListener('timeupdate',function() { | |
curtime = parseInt(song.currentTime,10); | |
document.getElementById('seek').max = song.duration; | |
document.getElementById('seek').value = curtime; | |
}) |
This file contains 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
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
html { | |
background: #000000; | |
} | |
html, body, .container { | |
height: 100%; | |
margin: 0; | |
font-family: Arial, Helvetica, sans-serif; | |
} | |
.container { | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -moz-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-align: center; | |
-webkit-align-items: center; | |
-moz-box-align: center; | |
-ms-flex-align: center; | |
align-items: center; | |
-webkit-box-pack: center; | |
-webkit-justify-content: center; | |
-moz-box-pack: center; | |
-ms-flex-pack: center; | |
justify-content: center; | |
} | |
.glow { | |
position: relative; | |
width: 300px; | |
height: 300px; | |
background: -webkit-gradient(linear,left bottom, left top,from(#000000),to(#262626)); | |
background: -webkit-linear-gradient(bottom,#000000,#262626); | |
background: -moz-linear-gradient(bottom,#000000,#262626); | |
background: -o-linear-gradient(bottom,#000000,#262626); | |
background: linear-gradient(0deg,#000000,#262626); | |
-webkit-border-radius: 50%; | |
-moz-border-radius: 50%; | |
border-radius: 50%; | |
} | |
.glow::before, .glow::after { | |
content: ''; | |
position: absolute; | |
top: -2px; | |
left: -2px; | |
background: -webkit-linear-gradient(45deg,#ff00ee,#0000ff,#00ff00,#ff0000,#ff00ee,#0000ff,#00ff00,#ffff00,#ff0000); | |
background: -moz-linear-gradient(45deg,#ff00ee,#0000ff,#00ff00,#ff0000,#ff00ee,#0000ff,#00ff00,#ffff00,#ff0000); | |
background: -o-linear-gradient(45deg,#ff00ee,#0000ff,#00ff00,#ff0000,#ff00ee,#0000ff,#00ff00,#ffff00,#ff0000); | |
background: linear-gradient(45deg,#ff00ee,#0000ff,#00ff00,#ff0000,#ff00ee,#0000ff,#00ff00,#ffff00,#ff0000); | |
-webkit-background-size: 400% 400%; | |
-moz-background-size: 400%; | |
-o-background-size: 400%; | |
background-size: 400%; | |
max-width: -webkit-calc(300px + 4px); | |
max-width: -moz-calc(300px + 4px); | |
max-width: calc(300px + 4px); | |
max-height: -webkit-calc(300px + 4px); | |
max-height: -moz-calc(300px + 4px); | |
max-height: calc(300px + 4px); | |
width: -webkit-calc(300px + 4px); | |
width: -moz-calc(300px + 4px); | |
width: calc(300px + 4px); | |
height: -webkit-calc(300px + 4px); | |
height: -moz-calc(300px + 4px); | |
height: calc(300px + 4px); | |
z-index: -1; | |
-webkit-animation: animate 20s linear infinite; | |
-moz-animation: animate 20s linear infinite; | |
-o-animation: animate 20s linear infinite; | |
animation: animate 20s linear infinite; | |
-webkit-border-radius: 50%; | |
-moz-border-radius: 50%; | |
border-radius: 50%; | |
} | |
.glow::after { | |
-webkit-filter: blur(20px); | |
filter: blur(20px); | |
} | |
.text-container { | |
width: -webkit-fit-content; | |
width: -moz-fit-content; | |
width: fit-content; | |
text-align: center; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
-webkit-transform: translate(-50%,-50%); | |
-moz-transform: translate(-50%,-50%); | |
-ms-transform: translate(-50%,-50%); | |
-o-transform: translate(-50%,-50%); | |
transform: translate(-50%,-50%); | |
} | |
.text { | |
color: #ffffff; | |
display: block; | |
} | |
button { | |
background: #000000; | |
color: #ffffff; | |
background: -webkit-gradient(linear,left bottom, left top,from(#000000),to(#262626)); | |
background: -webkit-linear-gradient(bottom,#000000,#262626); | |
background: -moz-linear-gradient(bottom,#000000,#262626); | |
background: -o-linear-gradient(bottom,#000000,#262626); | |
background: linear-gradient(0deg,#000000,#262626); | |
font-size: 14px; | |
border: none; | |
outline: none; | |
padding: 0px 15px; | |
width: 55px; | |
height: 30px; | |
line-height: 30px; | |
-webkit-border-radius: 32px; | |
-moz-border-radius: 32px; | |
border-radius: 32px; | |
} | |
input[type="range"] { | |
-webkit-appearance: none; | |
border: 1px solid #000000; | |
height: 5px; | |
vertical-align: middle; | |
-webkit-border-radius: 20px; | |
-moz-border-radius: 20px; | |
border-radius: 20px; | |
background-color: #232323; | |
outline: none; | |
} | |
input::-webkit-slider-thumb { | |
-webkit-appearance: none; | |
width: 20px; | |
height: 20px; | |
border: 1px solid #000000; | |
-webkit-border-radius: 10px; | |
border-radius: 10px; | |
background: #ffffff; | |
} | |
#seek { | |
display: block; | |
width: 230px; | |
} | |
@-webkit-keyframes animate { | |
0% { | |
background-position: 0 0; | |
} | |
50% { | |
background-position: 400% 0; | |
} | |
100% { | |
background-position: 0 0; | |
} | |
} | |
@-moz-keyframes animate { | |
0% { | |
background-position: 0 0; | |
} | |
50% { | |
background-position: 400% 0; | |
} | |
100% { | |
background-position: 0 0; | |
} | |
} | |
@-o-keyframes animate { | |
0% { | |
background-position: 0 0; | |
} | |
50% { | |
background-position: 400% 0; | |
} | |
100% { | |
background-position: 0 0; | |
} | |
} | |
@keyframes animate { | |
0% { | |
background-position: 0 0; | |
} | |
50% { | |
background-position: 400% 0; | |
} | |
100% { | |
background-position: 0 0; | |
} | |
} |
This file contains 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://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment