change gradient to vertical

This commit is contained in:
hossein s. borhani 2022-10-24 23:11:47 +03:30 committed by GitHub
parent 448db17b1e
commit 5f685bb0f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);