Newbie question: I am making a simple html game. It consists of these DIV layers:
z=1: large image (framing image)
z=2: medium image covering z1 (houses, trees)
z=3: small image covering z2 (character)
z=4: semi transparent image covering z3 (foreground objects)
z=5: medium image covering z2 but not z3 (other objects on the scene)
If I move the character (layer z3), which parts of the DOM are refreshed? I know it depends on the browser, but are there general rules for minimizing the changes?
<canvas>– Raynos Oct 31 '11 at 13:12z3.style.leftandz3.style.top, I expect one or two page reflows to occur. There is no such thing as a "DOM refresh" btw. The DOM is an object tree - you can set properties of objects inside that tree, but that won't cause the entire tree to recalculate. – Šime Vidas Oct 31 '11 at 13:13