qiuxiang / aubiojs

aubio for javascript, the real-time audio processing library
https://qiuxiang.github.io/aubiojs/
MIT License
137 stars 36 forks source link

Pitch.html example not working on firefox, but I found a soultion :) #21

Closed bertoncelj1 closed 1 year ago

bertoncelj1 commented 1 year ago

Hi! Love the library.

I just noticed that the pitch.html example doesnt work in firefox and I found out why.

The problem is that canvas is put over the audi controls so they are impossible to click. A simple fix would be to add to z-index to canvas css like that:

        canvas {
            position: absolute;
            top: 0;
            z-index: -1;
        }
qiuxiang commented 1 year ago

thx!