I'm planning an interface to show lots of little widgets (drawn on a <canvas>
), which may move around (for example in a list that gets sorted different ways with jQuery). The number of widgets may be anywhere between 10 and 100.
I could do this with one big canvas and just paint lots of widgets in the correct place. Or I could have lots of <canvas>
ses in <li>
s. Are canvasses light-weight enough for this kind of thing? Is there a compelling performance reason to chose one or the other?