change gradient to vertical
This commit is contained in:
parent
448db17b1e
commit
5f685bb0f5
@ -40,11 +40,10 @@ var start = function() {
|
||||
meterNum = 800 / (10 + 2), //count of the meters
|
||||
capYPositionArray = []; ////store the vertical position of hte caps for the preivous frame
|
||||
ctx = canvas.getContext('2d'),
|
||||
gradient = ctx.createLinearGradient(0, 0, 0, 300);
|
||||
gradient = ctx.createLinearGradient(0, 0, 600, 0);
|
||||
gradient.addColorStop(1, '#0ff');
|
||||
gradient.addColorStop(0.66, '#f0f');
|
||||
gradient.addColorStop(0.33, '#ff0');
|
||||
gradient.addColorStop(0, '#fff');
|
||||
gradient.addColorStop(0.5, '#f0f');
|
||||
gradient.addColorStop(0, '#ff0');
|
||||
// loop
|
||||
function renderFrame() {
|
||||
var array = new Uint8Array(analyser.frequencyBinCount);
|
||||
|
Loading…
Reference in New Issue
Block a user