Skip to content
Advertisement

How to make two canvas with two separate javascript code?

I am using Three.js to develop a cube that translates and rotate in 3D space using data from accelerometer and gyroscope data.

So far I have one canvas that shows the accelerometer movement. Now I need to have another canvas that shows the gyroscope data on a separate canvas, I prefer to have two JS code for each canvas, so they are independent of each other. I wasn’t able to make two separate canvases, and I don’t know if it is even possible to use two different javascript codes in the html.

Below is how my HTML is structured:

HTML

JavaScript

and this is the javascript:

JavaScript

this is how I want the canvas to look like:

enter image description here

Advertisement

Answer

Good news is it is possible, you just have to put all your code(at least animations) in separate functions :

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement