I am working for an image & js heavy application which involve huge amount of PNG (20KB ~ 300KB) with SVG, however the server respond time is not that good (pingtime is 178ms with broadband, while google.com is <10ms), so there is a request of image preload (images are static, load by $().attr(src))
Question:
Will preload huge amount of PNG by JS cause blocking, so the UI will be very slow/failed to respond user mouse event?
Can anyone give me suggestion if I need to preload 10~20 pieces of PNG (20KB ~ 300KB) after a function called , without slow down the UI (SVG)?
beside preload, any suggestion for making the image load faster? (I used Photoshop "save for web" as 24bit PNG to reduce image size)