set stange beckground color easeljs

Solutions on MaxInterview for set stange beckground color easeljs by the best coders in the world

showing results for - "set stange beckground color easeljs"
Salomé
18 Jun 2017
1// Change it to red
2canvas.style.backgroundColor = "#ff0000";
3
4// Change it to the value of a text input
5canvas.style.backgroundColor = document.getElementById("myTextInput").value;