0
Rectangle
I have to make an application that shows an rectangle and when i click it to change the color any ideas?
1 Answer
+ 3
You will just have to use an <svg> Tag in HTML. Then you would have to create a rectangle using <rect> and give rect an id. GIve the rectangle your favorite color and then use Javascript to change it. You will have to make a function which will change colors. The function will contain a variable whose value will be document.getElementById('Id').style.fill = "Color" ;
Make a onclick attribute on the rect tag with value is equal to color change function.
https://code.sololearn.com/WxAna6dgerpr/#html