0
Why the rgba isn't producing random colors here ??
4 odpowiedzi
+ 9
Line 40. You were using string literals instead of variables. Instead, do:
c.strokeStyle = "rgba("+r+","+g+","+b+","+o+")";
+ 5
you have to make sure rgb out puts correctly. do this below..it fixes it ( i left the o out because not sure what o does)
c.strokeStyle = "rgb("+r+","+g+","+b+")";
+ 1
didnt see hatsy reply sorry for redundancy. but it did take me 20 mins to figure it out lol so theres that
0
yeah... it's wrkin nw..thnx