Params onDone : function() onEachLoad : function(img)
Tag Archives: preloader
Making Orbit Shine
Making Orbit Shine Orbit looks fantastic out of the box (so to speak), but really getting the polish requires a couple more pieces of love, especially getting a hot load before images pop in and fixing for some less fortunate browsers (IE).
preloading images with css
HTML <div> <img src=”images/dog-over.gif” alt=”Dog” /> <img src=”images/cat-over.gif” alt=”Cat” /> <img src=”images/mouse-over.gif” alt=”Mouse” /> </div> CSS .preload{display:none;}
php Flushing output
Flushing output void flush ( void ) There is a special function in PHP called flush(), which is not really related to output buffering because it works with standard output, however it is so very similar to what we’ve just been looking at that it makes sense to cover it here. Flush() sends all output out immediately, without …