+ 4
i'm trying to make the javascript effects show on multiple divs
i have two different codes that i'm trying to add class attributes to and use "queryselectorAll & foreach" to loop through the javascript animation so the effects can show on multiple divs but i keep breaking the code please help https://code.sololearn.com/WwK1HtG3CnjZ/?ref=app https://code.sololearn.com/W3OGQSy6Xgjs/?ref=app
1 Réponse
+ 1
Pertaining to:
https://www.sololearn.com/compiler-playground/WwK1HtG3CnjZ/?ref=app
The first issue is the Id attribute.
The value of the id attribute must be unique within the HTML document.
So, when you copied the div you also copied the same canvas Id. So that broke everything.
If you change the ids for the other canvas, you will at least get the first canvas working.