I am using Javascript to manipulate CSS transforms in Chrome, and I've noticed that when translateZ
values get too low (far away), elements will disappear. This only seems to happen if there are a large number of elements.
It seems like this might have something to do with the z-index
of elements.
Here is an example of the problem: http://jsbin.com/iZAYaRI/26/edit
Hover the output to see the issue.
Does anyone know why this happens?
Update: It seems that the element isn't actually disappearing, but is shifting a thousand pixels or so.