Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
<div class="page">
  <h1>Play The <b>CSS3</b> Piano!</h1>
  <h2><b>Ebony and Ivory meet CSS.</b><br> Tap a key to play its note</h2>
<ol class="scale-1">
  <li data-note="c" >C</li>
  <li data-note="cs" class="ebony">C# D♭</li>
  <li data-note="d">D</li>
  <li data-note="ds" class="ebony">D# E♭</li>
  <li data-note="e">E</li>
  <li data-note="f">F</li>
  <li data-note="fs" class="ebony">F# G♭</li>
  <li data-note="g">G</li>
  <li data-note="gs" class="ebony">G# A♭</li>
  <li data-note="a">A</li>
  <li data-note="as" class="ebony">A# B♭</li>
  <li data-note="b">B</li>
</ol> 
  
<ol class="scale-2">
  <li data-note="c">C</li>
  <li data-note="cs" class="ebony">C# D♭</li>
  <li data-note="d">D</li>
  <li data-note="ds" class="ebony">D# E♭</li>
  <li data-note="e">E</li>
  <li data-note="f">F</li>
  <li data-note="fs" class="ebony">F# G♭</li>
  <li data-note="g">G</li>
  <li data-note="gs" class="ebony">G# A♭</li>
  <li data-note="a">A</li>
  <li data-note="as" class="ebony">A# B♭</li>
  <li data-note="b">B</li>
</ol>
<!-- ol class="scale-3">
  <li data-note="c">C</li>
  <li data-note="cs" class="ebony">C# D♭</li>
  <li data-note="d">D</li>
  <li data-note="ds" class="ebony">D# E♭</li>
  <li data-note="e">E</li>
  <li data-note="f">F</li>
  <li data-note="fs" class="ebony">F# G♭</li>
  <li data-note="g">G</li>
  <li data-note="gs" class="ebony">G# A♭</li>
  <li data-note="a">A</li>
  <li data-note="as" class="ebony">A# B</li>
  <li data-note="b">B</li>
</ol -->
</div>

<!-- Original mp3 files from http://www.vibrationdata.com/piano.htm -->

C <audio id="mid-c" preload="auto" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_middle_C.mp3"></source>
</audio>
C# <audio preload="auto" id="mid-c-sharp" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_C_sharp.mp3"></source>
</audio>
D <audio preload="auto" id="mid-d" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_D.mp3"></source>
</audio>
D# <audio preload="auto" id="mid-d-sharp" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_D_sharp.mp3"></source>
</audio>
E <audio preload="auto" id="mid-e" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_E.mp3"></source>
</audio>
F <audio preload="auto" id="mid-f" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_F.mp3"></source>
</audio>
F# <audio preload="auto" id="mid-f-sharp" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_F_sharp.mp3"></source>
</audio>
G <audio preload="auto" id="mid-g" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_G.mp3"></source>
</audio>
G#<audio preload="auto" id="mid-g-sharp" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_G_sharp.mp3"></source>
</audio>
A <audio preload="auto" id="mid-a" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_A.mp3"></source>
</audio>
A# <audio preload="auto" id="mid-a-sharp" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_A_sharp.mp3"></source>
</audio>
B <audio preload="auto" id="mid-b" controls>
  <source src="https://dl.dropbox.com/u/37434025/PianoTones/piano_B.mp3"></source>
</audio>
              
            
!

CSS

              
                @import "compass/css3";

@import url(https://fonts.googleapis.com/css?family=Pirata+One);

$ebony : #171C1A;
$ivory: white;
* {box-sizing: border-box;}

body {
  @include background(linear-gradient( top, white, gainsboro 100%));
  background-size: cover;
}  
audio { display: block; margin-bottom: 1rem; } 
h1,h2  { 

  color: rgb(100,100,100);
  line-height: 1.2; 
  margin: 0 0 1rem; 
  text-shadow : 0 2px 4px rgba(black, 0.25);
   b {
   color: rgb(100,0,0);
    text-shadow: 0px 1px 5px #CCC;
  }
}
h1 { 
    font-family: 'Pirata One', cursive;

  font-size: 3rem;
}
.page {
  margin: 30px auto;
  text-align: center;
  width: 75%;
  overflow: hidden;
}
ol { 
  position: relative; 
  padding: 0; 
  margin: 0 0 10px; 
  display: inline-block;
  //float: left;
  font-size: 0; // to get rid of spaces between keys. ugly, I know.
}
li{
  font-size: 16px;
  font-size: 1rem;
  @include background(linear-gradient( top, #C0C1BD, #F0F0F0 10%, linen));  
  transition: all 0.1s ease-in-out; //  just a little animation

  padding: 0; 
  margin: 0;
  display: inline-block;
  border: 1px solid #ccc;
  padding: 220px 15px 50px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 5px #aaa;

  position: relative;
  z-index: 1;
  cursor: pointer;

  color: transparent;
  &:hover {
    color: #C0C1BD;
    
  }
  &:active{
    box-shadow: none;
    top: 5px;
    color: #333;
  }
  &.ebony {
    /* build the key shape */
    z-index: 2;
    position: absolute;
    width: 32px;
    top: 0px;
    margin-left: -16px; // align the ebony keys
    padding: 130px 0px 10px;

    /* Typography */
    text-align: center;
    font-size: 0.66667rem;
    color: transparent;
   
    
    border-radius: 0 0 2px 2px;
    border-width: 0 6px 12px;
    border-color: #000;
    border-bottom-color: #424546;
    background: $ebony;
    @include background( linear-gradient(#5F6265, #151B19 25%, $ebony));
    box-shadow: 0 3px 5px #ccc, inset 0px 0px 0px 1px rgba(gainsboro,0.2);
    
    &:hover {
        color: gainsboro;
    }
    
    &:active {
      @include background( linear-gradient(#5F6265, #151B19 50%, $ebony)); 
      border-bottom-width: 8px;
      padding-top: 135px;
      color: $ivory;
    }
  }
}

              
            
!

JS

              
                /*

Is you use this in a project, drop me a line. I'd love to see it used in action!

*/
$(document).ready(function(){
  var c = $("#mid-c")[0];
  var cs = $("#mid-c-sharp")[0];
  var d = $("#mid-d")[0];
  var ds = $("#mid-d-sharp")[0];
  var e = $("#mid-e")[0];
  var f = $("#mid-f")[0];
  var fs = $("#mid-f-sharp")[0];
  var g = $("#mid-g")[0];
  var gs = $("#mid-g-sharp")[0];
  var a = $("#mid-a")[0];
  var as = $("#mid-a-sharp")[0];
  var b = $("#mid-b")[0];

  //c.play();
  $("li").click( function(){
    var note = this.dataset.note;
    //alert(note);
   switch(note){
      case "a": a.play();
        break;
      case "b": b.play();
        break;
      case "c": c.play();
        break;
      case "d": d.play();
        break;
      
      case "e": e.play();
        break;
      
      case "f": f.play();
        break;
      
      case "g": g.play();
        break;
      
      case "as": as.play();
        break;
      
      case "cs": cs.play();
        break;
      
      case "ds": ds.play();
        break;
      
      case "fs": fs.play();
        break;
      
      case "gs": gs.play();
        break;
      }
  });  

});
//audio.play();

// Javascript adapted from here: 
// https://www.html5rocks.com/en/tutorials/webaudio/intro/

// Notes can be found here:
// http://www.vibrationdata.com/piano.htm
/*
window.onload = init;
var context;
var bufferLoader;

function init() {
  context = new webkitAudioContext();

  bufferLoader = new BufferLoader(
    context,
    [
      'http://www.vibrationdata.com/piano_middle_C.mp3',
      'http://www.vibrationdata.com/piano_middle_C.mp3',
    ],
    finishedLoading
    );

  bufferLoader.load();
}

function finishedLoading(bufferList) {
  // Create two sources and play them both together.
  var source1 = context.createBufferSource();
  var source2 = context.createBufferSource();
  source1.buffer = bufferList[0];
  source2.buffer = bufferList[1];

  source1.connect(context.destination);
  source2.connect(context.destination);
  source1.noteOn(0);
  source2.noteOn(0);
}
  */
              
            
!
999px

Console