From b9f465de0b2a3f979f341bed6abec847681ccaa7 Mon Sep 17 00:00:00 2001 From: Ben Schmaus Date: Sat, 6 Feb 2016 20:49:36 -0800 Subject: [PATCH] adds wave bank table and 8 steps for wave knob for easy wave selection --- index.html | 65 +++++++++++++++++++++++++++++++++++++++++++++++++----- s.css | 17 ++++++++++++++ 2 files changed, 76 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 6f362f5..9a5f4b4 100644 --- a/index.html +++ b/index.html @@ -25,7 +25,6 @@ ga('create', 'UA-53688025-2', 'auto'); ga('send', 'pageview'); - @@ -34,9 +33,11 @@
-

blipweb [beta]: patch editing and sharing for meeblip anode. +

blipweb [v0.3 beta]: patch editing and sharing for meeblip anode. - examples: perc - fuzz buzz - fat lead

+ examples: perc - + buzz - + phlead

@@ -102,13 +103,43 @@

oscillators

wave

- + + + + + + + + + +
rangebank abank b
+ + +

detune

- +
@@ -155,7 +186,7 @@

MIDI only params

glide

- +
@@ -219,6 +250,28 @@

osc. b wave

'fgColor': '#222222' } ); + $("input[name='wave']").knob( + { + 'min':0, + 'max':127, + 'step': 16, + 'width': '70', + 'height': '100', + 'cursor': false, + 'thickness': .3, + 'angleOffset': -150, + 'angleArc': 300, + 'fgColor': '#222222', + 'format': function(v) { + if (v > 127) { + return 127; + } else { + return v; + } + } + } + ); + $("#sustain").buttonset(); $("#octave").buttonset(); $("#lDest").buttonset(); diff --git a/s.css b/s.css index f5f1b7a..5db34c2 100644 --- a/s.css +++ b/s.css @@ -40,6 +40,22 @@ h1 { float: left; } +#waveBanks { + position: relative; + font-size: .7em; + border: 1px solid #333; + width: 150px; + text-align: center; + top: -20px; + left: 10px; +} + +#waveBanks tr { +} + +#waveBanks td { +} + #lfo { } @@ -95,5 +111,6 @@ input.controlButton { .clear { clear: both; + height: 1px; }