ComboBox - HTML Canvas - Change font size?
How do I change the font size of a ComboBox in an HTML Canvas/JavaScript movie?
How do I change the font size of a ComboBox in an HTML Canvas/JavaScript movie?
OK, I have attached a CCS file to the movie through the CSS component.
#LensMagCombo{
font-size: 0.55vw;
}What are the styleable parameters I can add for the ComboBox. I have looked and can't find a list anywhere..
Awesome!
Glad it worked.
Components in the HTML5 canvas documents are basically wrappers for jQuery UI components.
So you can basically understand them as regular HTML elements. This means that you can use all applicable CSS properties.
To find out what the properties are, you can search for some online references like this or you can log the properties to the console like this:
console.log(combo.style);
Regards,
JC
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.