Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are building an application that makes extensive use of css3 transformations. apparently, transform scale, rotate3d, and of course large images are all factors that cause a memory usage threshold to be reached once a critical number of html elements are on the page.

The goals is to maximize the number of elements that can be added, with minimal compromise in features of css3d transforms or image size/ quality.

I am looking for tools / techniques to monitor the memory usage in the browser on as detailed a level as is technologically available.

Currently working with google chrome.

bonus: any tips for efficiently working with images / css3 transformations / animations?

share|improve this question
currently learning the intricacies of chrome debugger and running test pages such as jsfiddle.net/khKqr/embedded/result – CodeToad Jan 30 at 15:56
chrome heap snapshot profiler shows 5.58mb memory usage. after I make a change that leads to what seems to be a memory-limit related problem (adding more large rotated images to the dom) the heap shapshot shows 5.69mb working on inspecting the details of the heap shapshot to gain more information – CodeToad Jan 31 at 16:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.