- Inside the coding systems of HTML and CSS I cannot edit or change the font color with the code lines and examples we have provided. However, we can change the font color settings when coding in java script, Within the example provided, line 50 within the java script lanugage is what would be used to edit the font color.
- Contructors in java script identify a certain object that is going to be built within the system. In this example the constructor is building the diffrent font styles used for the meme such as the width, boldness, padding, and color.
- The media code in the case described in lines 61-73 in java script developes where the text is going to be placed on the media file/link that we assigned in HTML. It also develops a font size so that the text can be fitted on the media file properly.
Look at the render method, is this convention "vanilla" (built in) or do you think a library is delivering this
- I beilive that the render method stays as vanilla since all the code is getting passed through java script and not including any other sources. Since the render is taking code information from the html and css and apllying that knowledge into JS, shows the process is being shown within a built in render rather than some random one from a library.
super(). This is important - the super method calls the constructor of the class from which the current class inherits. See the statement:class MemeMaker extends LitElement. In this case, the super method in theMemeMakerclass calls the constructor of theLitElementclass.querySelectorand then modify the properties with JavaScript. But in the code, HTML and CSS are being imported from a link (line 5) and used in the code to render HTML and CSS directly without modifying properties.