Created
August 6, 2014 05:08
-
-
Save notthetup/62a0e63cc318912ddd4a to your computer and use it in GitHub Desktop.
A Pen by Adam Blum.
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
<h1>Super-Simple Audio Player</h1> | |
<p>By using an <code><audio></code> element followed by an <code><a href="#" class="play"></a></code>, you have a simple play/pause audio player. </p> | |
<p> | |
<audio src="http://www.maninblack.org/demos/WhereDoAllTheJunkiesComeFrom.mp3"></audio> | |
<a class="play" href="#"></a> | |
<audio src="http://bornemark.se/bb/mp3_demos/PoA_Sorlin_-_Stay_Up.mp3"></audio> | |
<a class="play" href="#"></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
$(function() { | |
$("audio + a").click(function(e) { | |
e.preventDefault(); | |
var song = $(this).prev('audio').get(0); | |
if (song.paused) { | |
song.play(); | |
// $(this).text("❙ ❙"); | |
$(this).addClass("pause"); | |
$(this).removeClass("play"); | |
} | |
else { | |
song.pause(); | |
// $(this).text("▶"); | |
$(this).addClass("play"); | |
$(this).removeClass("pause"); | |
} | |
}); | |
}); |
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
@import "compass/css3"; | |
$blue: rgb(124, 192, 203); | |
$sans-serif: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
$monospace: Consolas, "Bitstream Vera Sans Mono", "Andale Mono", Monaco, "DejaVu Sans Mono", "Lucida Console", monospace; | |
$thin: "HelveticaNeue-UltraLight", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
body { | |
padding: 1rem 3rem; | |
font-family: $sans-serif; | |
} | |
*, *:before, *:after {box-sizing: border-box !important;} | |
h1 {font-family: $thin; font-weight: 100; max-width: 40rem; margin: 1em auto;} | |
code {font-family: $monospace;} | |
p {max-width: 40rem; margin: 1rem auto;} | |
a { | |
color: $blue; | |
width: 1.5rem; | |
height: 1.5rem; | |
background: none; | |
} | |
span { | |
display: block; | |
color: $blue; | |
font-family: $sans-serif; | |
font-size: 1rem; | |
} | |
$icon: $blue; | |
:before, :after{ | |
display: block; | |
content: ""; | |
position: absolute; | |
} | |
.play, .pause{ | |
width: 1.5rem; | |
height: 1.5rem; | |
display: block; | |
clear: both; | |
} | |
.play:before { | |
border-top: 0.375rem solid transparent; | |
border-bottom: 0.375rem solid transparent; | |
border-left: 0.625rem solid $icon; | |
margin: 0.375rem 0 0 0.5rem; | |
} | |
.pause:before { | |
background: $icon; | |
margin: 0.4375rem 0.125rem 0 0.4375rem; | |
width: 0.25rem; | |
height: 0.625rem; | |
} | |
.pause:after { | |
background: $icon; | |
margin: 0.4375rem 0.125rem 0 0.8125rem; | |
width: 0.25rem; | |
height: 0.625rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment