HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!-- JQUERY.KNOBBY.JS --->
<div class="keyboard">
<div class="key c zero"><k id="germanY">Y</k></div>
<div class="key c cross zero"><k>S</k></div>
<div class="key d zero"><k>X</k></div>
<div class="key d cross zero"><k>D</k></div>
<div class="key e zero"><k>C</k></div>
<div class="key f zero"><k>V</k></div>
<div class="key f cross zero"><k>G</k></div>
<div class="key g zero"><k>B</k></div>
<div class="key g cross zero"><k>H</k></div>
<div class="key a zero"><k>N</k></div>
<div class="key a cross zero"><k>J</k></div>
<div class="key b zero"><k>M</k></div>
<div class="key c one"><k>Q</k></div>
<div class="key c cross one"><k>2</k></div>
<div class="key d one"><k>W</k></div>
<div class="key d cross one"><k>3</k></div>
<div class="key e one"><k>E</k></div>
<div class="key f one"><k>R</k></div>
<div class="key f cross one"><k>5</k></div>
<div class="key g one"><k>T</k></div>
<div class="key g cross one"><k>6</k></div>
<div class="key a one"><k id="germanZ">Z</k></div>
<div class="key a cross one"><k>7</k></div>
<div class="key b one"><k>U</k></div>
<div class="key c two"><k>I</k></div>
<div class="key c cross two"><k>9</k></div>
<div class="key d two"><k>O</k></div>
<div class="key d cross two"><k>0</k></div>
<div class="key e two"><k>P</k></div>
<div class="key f two"><k>Ü</k></div>
<div class="key f cross two"></div>
<div class="key g two"></div>
<div class="key g cross two"></div>
<div class="key a two"></div>
<div class="key a cross two"></div>
<div class="key b two"></div>
<div class="key c three"></div>
<div class="key c cross three"></div>
<div class="key d three"></div>
<div class="key d cross three"></div>
<div class="key e three"></div>
<div class="key f three"></div>
<div class="key f cross three"></div>
<div class="key g three"></div>
<div class="key g cross three"></div>
<div class="key a three"></div>
<div class="key a cross three"></div>
<div class="key b three"></div>
<div class="key c four"></div>
</div>
<fieldset>
<legend>Keyboard</legend>
<label>Keyboard-Layout:
<select name="keyboardLayout">
<option value="de">German (QWERTZ)</option>
<option value="en">English (QWERTY)</option>
<!--<option value="FRE">French (AZERTY)</option>-->
</select>
</label>
<label>
<input type=checkbox name=showKeyboardKeys checked /> Show keys
</label>
<label>
<input type=checkbox name=transposeUp /> Transpose 1 oct up
</label>
</label>
</fieldset>
<fieldset>
<legend>Wave</legend>
<label>
Volume:
<input name="volume" type="number" class="knobby" min="0" max="2" value="1" step=".1" />
</label>
<label>Form:</label>
<label><input type="radio" name="type" value="sine" > <i>∿</i></label>
<label><input type="radio" name="type" value="square" > <i>⊔</i></label>
<label><input type="radio" name="type" value="triangle" checked> <i>△</i></label>
<label><input type="radio" name="type" value="sawtooth" > <i> ⊿</i></label>
</fieldset>
<fieldset>
<legend>Env</legend>
<label>Attack:
<input type="number" name="attack" class="knobby" min="0" max="2" step=".01" value=".2">
</label>
<label>Decay:
<input type="number" name="decay" class="knobby" min="0" max="2" step=".01" value=".1">
</label>
<label>Sustain:
<input type="number" name="sustain" class="knobby" min="0" max="2" step=".01" value=".5">
</label>
<label>Release:
<input type="number" name="release" class="knobby" min="0" max="2" step=".01" value=".5">
</label>
</fieldset>
.knobby-wrap {
padding: 5px;
display: inline-block;
vertical-align: middle;
text-align: center;
}
i {
font-size:2em;
font-style:normal;
}
.knobby-knob {
display: block;
position: relative;
width: 8em;
height: 8em;
border-radius: 100%;
overflow: hidden;
/* created with http://codeblock.at/base64-noise-generator/ */
background: #212121 url(data:image/png;base64,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);
background-size: 50% 50%;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.knobby-shadow {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
border-radius: 100%;
box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.5) inset, 0 1px 3px rgba(255, 255, 255, 0.85) inset;
}
.knobby-handle {
transform: rotate(0deg) translateY(-3em);
position: absolute;
width: 1em;
height: 1em;
left: 50%;
top: 50%;
margin-top: -0.5em;
margin-left: -0.5em;
background: #525b58;
border-radius: 100%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) inset, 0 -2px 4px rgba(255, 255, 255, 0.85) inset;
pointer-events: none;
}
.knobby-input {
margin: 4px auto;
text-align: right;
background: #222;
width:5em;
color: #eee;
border: 1px solid #111;
padding: 5px 0;
font-family: monospace;
box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(255, 255, 255, 0.85);
}
@keyWidth: 50px;
@keyHeight: 200px;
@crossHeightRatio: 0.75;
@crossWidthRatio: 0.66;
@import url(https://fonts.googleapis.com/css?family=Roboto);
body {
-webkit-backface-visibility: hidden;
font: 0.9em "Roboto", sans-serif;
line-height: 2.0;
background: #333;
color: #aaa;
}
fieldset {
display: block;
border: 1px solid gray;
}
div.keyboard {
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
margin: 10px auto;
height: 220px;
width:1450px;
user-select:none;
-webkit-user-select:none;
}
label { padding: 0 1em }
.key {
position: absolute;
background: white;
height: @keyHeight;
width: @keyWidth;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
cursor: pointer;
border-radius: 0 0 5px 5px;
-webkit-transform-origin: top center;
-webkit-transform: translate(0, 0) rotateX(0);
-moz-transform-origin: top center;
-moz-transform: translate(0, 0) rotateX(0);
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
transition: all .2s ease;
border: 1px solid gray;
z-index: 90;
k {
position: absolute;
bottom: 0;
left: 0;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
color: gray;
font-size: 10px;
font-weight: bold;
opacity: 0.8;
}
}
body.hideKeyboardKeys .key k {
display: none;
}
.key.active {
background: orange!important;
//-webkit-transform-origin:top center;
-webkit-transform: translate3d(0, 0, -5px) rotateX(-1deg) scale(0.95);
//-moz-transform-origin:top center;
-moz-transform: rotateX(-1deg) scale(0.95);
z-index: 80;
k {
//color:white;
}
}
.key.cross.active {
z-index: 100;
-webkit-transform: rotateX(0) scale(0.95);
//-moz-transform-origin:top center;
-moz-transform: rotateX(0) scale(0.95);
}
.key.cross {
height: @keyHeight * @crossHeightRatio;
background: black;
margin-left: @keyWidth - (@keyWidth * @crossWidthRatio/2);
z-index: 100;
width: @keyWidth * @crossWidthRatio;
}
.c {
left: 0;
}
.d {
left: @keyWidth;
}
.e {
left: @keyWidth*2;
}
.f {
left: @keyWidth*3;
}
.g {
left: @keyWidth*4;
}
.a {
left: @keyWidth*5;
}
.b {
left: @keyWidth*6;
}
.one {
margin-left: @keyWidth*7;
}
.one.cross {
margin-left: @keyWidth*7 + @keyWidth - (@keyWidth * @crossWidthRatio/2);
}
.two {
margin-left: @keyWidth*14;
}
.two.cross {
margin-left: @keyWidth*14 + @keyWidth - (@keyWidth * @crossWidthRatio/2);
}
.three {
margin-left: @keyWidth*21;
}
.three.cross {
margin-left: @keyWidth*21 + @keyWidth - (@keyWidth * @crossWidthRatio/2);
}
.four {
margin-left: @keyWidth*28;
}
.four.cross {
margin-left: @keyWidth*28 + @keyWidth - (@keyWidth * @crossWidthRatio/2);
}
/*
* Knobby - jQuery Plugin
* by Christian Frauscher
* Examples and documentation at: http://github.com/grilly86/jquery.knobby.js/
*
* Version: 0.1 (2015-05-13)
*
*/
(function ($) {
$.fn.knobby = function (options) {
var instanceIsPressed = [];
var rad2deg = (180/Math.PI);
var settings = $.extend({
min:0,
max:100,
step:1,
turn:1,
size:4,
handleSize:1,
handleGap:.25,
}, options);
var normalizeDegree = function(d) {
if (d < 0) {
d = normalizeDegree(d + 360);
}
return d;
};
var KnobbyVector = function(x,y){
this.x = x;
this.y = y;
};
var upOrDown = function(x,y,prevX,prevY,radius) {
var x1 = radius - prevX;
var x2 = radius - x;
var y1 = radius - prevY;
var y2 = radius - y;
var v1 = new KnobbyVector(x1,y1);
var v2 = new KnobbyVector(x2,y2);
var a1 = Math.atan((v1.x)/(v1.y)) * rad2deg;
var a2 = Math.atan((v2.x)/(v2.y)) * rad2deg;
var alpha = a1 - a2;
if (alpha > 90) { alpha -= 180 }
if (alpha < -90) { alpha += 180 }
return alpha;
};
this.each(function(n) {
instanceIsPressed[n] = false;
var $input = $(this);
var $wrap = $("<div>");
$wrap.addClass("knobby-wrap");
var $knob = $("<div>");
$knob.addClass("knobby-knob");
var $handle = $("<div>");
$handle.addClass("knobby-handle");
var $knob_sh = $("<div>");
$knob_sh.addClass("knobby-shadow");
$knob_sh.appendTo($knob);
$handle.appendTo($knob);
$wrap.append($knob);
// swap input
$wrap.insertBefore(this);
$input.insertAfter($knob);
$input.addClass("knobby-input");
var mouseIsDown = false;
var prevX, prevY;
var min = $input.attr("min") ? parseFloat($input.attr("min")) : settings.min;
var max = parseFloat($input.attr("max")) || settings.max;
var step = parseFloat($input.attr("step")) || settings.step;
var turn = parseFloat($input.attr("turn")) || settings.turn;
var exact_val = parseFloat($input.val()) || 0.0;
var size = parseFloat($input.attr("size")) || settings.size;
var handleSize = parseFloat($input.attr("handle-size")) || settings.handleSize;
var handleGap = $input.attr("handle-gap") ? parseFloat($input.attr("handle-gap")) : settings.handleGap;
// formats numbers on init
var decimals = (step.toString().length-1);
if (decimals>0) decimals-=1;
var val = (Math.round(exact_val/step)*step).toFixed(decimals);
$input.val(val);
$knob.css({width:size*2 + "em",height: size*2 + "em"});
$handle.css({width:handleSize + "em", height: handleSize + "em", marginTop: -(handleSize/2)+"em", marginLeft:-handleSize/2+"em"});
var width = parseFloat($knob.width());
var self_triggered_change=false;
$input.bind("input change", function (e) {
if (!self_triggered_change) {
exact_val = parseFloat($(this).val()) || 0.0;
if ((typeof max !== "undefined") && (exact_val > max)) exact_val = max;
if ((typeof min !== "undefined") && (exact_val < min)) exact_val = min;
refreshValue(e.type=="change");
draw();
}
});
var currentFinger=0;
$knob.bind("mousedown touchstart", function (e) {
mouseIsDown = true;
instanceIsPressed[n] = true;
if (e.type == 'touchstart') {
currentFinger = e.originalEvent.changedTouches[0].identifier;
}
});
$(window).bind("mousemove touchmove", function (e) {
if (mouseIsDown) {
var x = 0,y = 0;
if (e.type == "mousemove") {
x = e.pageX - $knob.position().left;
y = e.pageY - $knob.position().top;
}
if(e.type == 'touchmove'){
var touch;
var touches = e.originalEvent.changedTouches;
if (touches) {
for (var t = 0; t < touches.length; t++) {
if (touches[t].identifier == currentFinger) {
touch = touches[t];
}
}
}
if (touch) {
x = touch.pageX - $knob.position().left;
y = touch.pageY - $knob.position().top;
}
}
if ((x || y) && (prevX || prevY)) {
var change = upOrDown(x, y, prevX, prevY, width/2);
change = change / 360 * (max - min) / turn ;
exact_val += change;
if ((typeof max !== "undefined") && (exact_val > max)) {
exact_val = max;
}
if ((typeof min !== "undefined") && (exact_val < min)) {
exact_val = min;
}
refreshValue(true);
draw();
self_triggered_change = true;
$input.trigger("change");
self_triggered_change = false;
}
prevX = x;
prevY = y;
e.preventDefault();
} else {
prevX = null;
prevY = null;
}
for(var i = 0; i<instanceIsPressed.length; i++) {
if (instanceIsPressed[i]) {
e.preventDefault();
return;
}
}
});
$(window).bind("mouseup touchend", function (e) {
mouseIsDown = false;
prevX = undefined;
prevY = undefined;
instanceIsPressed[n] = false;
});
$knob.bind("dragstart drop", function () {
return false;
}).css("cursor", "pointer");
var refreshValue = function(rewrite) {
if (typeof rewrite == "undefined") rewrite = true;
var decimals = (step.toString().length-1);
if (decimals>0) decimals-=1;
val = (Math.round(exact_val/step)*step).toFixed(decimals);
if (rewrite) {
$input.val(val);
}
};
var draw = function () {
var degree = normalizeDegree((val-min) * (((360)*turn) / (max-min)));
$handle.css("transform", " translateY(-"+parseFloat((size-handleSize/2)-handleGap)+"em) rotate(-" + degree + "deg)");
$knob.css("transform", "rotate(" + degree + "deg)");
$knob_sh.css("transform", "rotate(-" + degree + "deg)");
};
if ((typeof max !== "undefined") && (exact_val > max)) {
exact_val = max;
}
if ((typeof min !== "undefined") && (exact_val < min)) {
exact_val = min;
}
refreshValue(true);
draw();
});
return this;
};
}(jQuery));
// var formFields = [
// "volume", "type",
// "attack", "decay", "sustain", "release",
// ];
// var formFieldValues = {};
// for(var x = 0; x < formFields.length; x++) {
// $("[name="+formFields[x]+"]").change(function() {[
// formFieldsValues
// ])
// }
var $volume = $("[name=volume]");
var volume = $volume.val();
$volume.change(function() {
volume=parseFloat(this.value) || 0;
})
var $attack = $("[name=attack]");
var attack = parseFloat($attack.val());
var $decay = $("[name=decay]");
var decay = parseFloat($decay.val());
var $sustain = $("[name=sustain]");
var sustain = $sustain.val();
var $release = $("[name=release]");
var release = $release
$attack.change(function() {
attack=parseFloat(this.value) || 0;
})
$decay.change(function() {
decay=parseFloat(this.value) || 0;
})
$sustain.change(function() {
sustain=parseFloat(this.value) || 0;
})
$release.change(function() {
release=parseFloat(this.value) || 0;
})
var wave_type = "triangle";
$("[name=type]").change(function() {
wave_type = this.value;
})
var envs = [];
var waves = [];
var stoppingKeys = [];
var transposeUp = false;
var env,wave;
function makeTone(frequency, stopHandler) {
env = new p5.Env();
env.setADSR(attack,decay,sustain,release);
env.setRange(2,0);
env.mult(volume);
wave = new p5.Oscillator();
wave.setType(wave_type)
wave.start();
wave.freq(frequency);
wave.amp(env);
env.triggerAttack();
envs.push(env);
waves.push(wave);
stoppingKeys[envs.length - 1] = stopHandler;
return envs.length - 1;
};
function stopMe(index) {
envs[index].triggerRelease();
// improve this:
setTimeout(function() {
waves[index].stop();
delete envs[index];
delete waves[index];
},release*1100);
var returnValue = stoppingKeys[index];
stoppingKeys.splice(index);
return returnValue;
}
$(".key").bind("mousedown touchstart", function() {
var className = this.className;
var tone = className.substring(4, 5);
var cross = $(this).hasClass("cross");
var frequency = 0.0;
$(this).addClass("active");
var index = $(this).index() - 21;
frequency = 440 * Math.pow(2, (index / 12));
var index = makeTone(frequency, $(this));
$(this).bind("mouseup touchend mouseleave", function() {
stopMe(index);
$(this).removeClass("active").unbind("mouseup touchend mouseleave");
});
});
var keysPressed = [];
$(window).bind("keydown keyup", function(e) {
var up = (e.type == "keyup");
var key = "";
if (!up && keysPressed[e.which] == true) {
e.preventDefault();
return false;
} else {
var zeroClass = (transposeUp ? "one" : "zero");
var oneClass = (transposeUp ? "two" : "one");
var twoClass = (transposeUp ? "three" : "two");
keysPressed[e.which] = !up;
switch (e.which) {
case keyCZero: // Y
key = ".key." + zeroClass + ".c";
break;
case 83: // S
key = ".key." + zeroClass + ".c.cross";
break;
case 88: // X
key = ".key." + zeroClass + ".d";
break;
case 68: // D
key = ".key." + zeroClass + ".d.cross";
break;
case 67: // C
key = ".key." + zeroClass + ".e";
break;
case 86: // V
key = ".key." + zeroClass + ".f";
break;
case 71: // G
key = ".key." + zeroClass + ".f.cross";
break;
case 66: // B
key = ".key." + zeroClass + ".g";
break;
case 72: // H
key = ".key." + zeroClass + ".g.cross";
break;
case 78: // N
key = ".key." + zeroClass + ".a";
break;
case 74: // J
key = ".key." + zeroClass + ".a.cross";
break;
case 77: // M
key = ".key." + zeroClass + ".b";
break;
case 188: // , ;
case keyCOne: // Q
key = ".key." + oneClass + ".c";
break;
case 76: // L
case 50: // 2
key = ".key." + oneClass + ".c.cross";
break;
case 190: // . :
case 87: // W
key = ".key." + oneClass + ".d";
break;
case 192: // Ö ( GERMAN keyboard )
case 51: // 3
key = ".key." + oneClass + ".d.cross";
break;
case 189: // -_
case 69: // E
key = ".key." + oneClass + ".e";
break;
case 82:
key = ".key." + oneClass + ".f";
break;
case 53:
key = ".key." + oneClass + ".f.cross";
break;
case 84:
key = ".key." + oneClass + ".g";
break;
case 54:
key = ".key." + oneClass + ".g.cross";
break;
case keyAOne: // Z
key = ".key." + oneClass + ".a";
break;
case 55: // 7
key = ".key." + oneClass + ".a.cross";
break;
case 85: // U
key = ".key." + oneClass + ".b";
break;
case 73: // I
key = ".key." + twoClass + ".c";
break;
case 57: // 9
key = ".key." + twoClass + ".c.cross";
break;
case 79: // O (Ooohhhh)
key = ".key." + twoClass + ".d";
break;
case 48: // 0 (NULL)
key = ".key." + twoClass + ".d.cross";
break;
case 80: // P
key = ".key." + twoClass + ".e";
break;
case 186: // Ü (German keyboard)
key = ".key." + twoClass + ".f";
break;
}
if (key) {
if (up) {
$(key).first().mouseup();
} else {
$(key).first().mousedown();
}
e.preventDefault();
return false;
}
}
});
$("input[name=showKeyboardKeys]").change(function(e) {
if (this.checked) {
$("body").removeClass("hideKeyboardKeys");
} else {
$("body").addClass("hideKeyboardKeys");
}
});
var keyCZero = 89; // Y (german)
var keyCOne = 81; // Q (german)
var keyAOne = 90; // Z (german)
$("select[name=keyboardLayout]").change(function() {
if (this.value == "de") {
keyCZero = 89;
keyCOne = 81;
keyAOne = 90;
$("#germanY").html("Y");
$("#germanZ").html("Z");
} else {
keyCZero = 90;
keyAOne = 89;
if (this.value == "fr") {
keyCOne = 65; // A
} else {
keyCOne = 81;
}
$("#germanY").html("Z");
$("#germanZ").html("Y");
}
});
var userLang = navigator.language || navigator.userLanguage;
if (userLang.indexOf("de")<0) {
// keys should also be correct at the beginning on an english keyboard
$("select[name=keyboardLayout]").val("en").trigger("change");
}
$("input[name=transposeUp]").change(function() {
transposeUp = this.checked;
$("input[name=showKeyboardKeys]").removeAttr("checked").change();
});
$("input.knobby").knobby();
Also see: Tab Triggers