I'm making a monochrome in-browser 'LED' display. It should have a matrix of 33 x 278 'LEDs', each of which is 3 x 3 'real' pixels. It will be used to display a progress bar and current time in HH:MM format, or number of days left in 'NN days' format. It will also be adjustable (the user will be able to set the time).
I see two ways to do this:
- Use
<canvas>and draw the 'LEDs' with it. - Use a
<div>for each 'LED'. I feel like I will have more control over each 'LED' with that one, but the thought of almost 10 000divs somewhat scares me.
I'd like to know which of these methods is preferable and why. Or is there another way, perhaps?