
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 1.26 KB | hits: 10 | expires: Never
$(document).ready(function(){
$("#preloader").show();
$("#slideshow > a").hide();
$("#slideshow > a:first").show();
$("#slideshow > a img").each(function() {
var $this = $(this);
var src = $this.attr('src');
$this.removeAttr('src');
$this.data('src', src);
});
$("#slideshow img").imagesLoaded2(function() {
$("#preloader").hide();
$("#slideshow > a").show();
//panorama slideshow
setInterval( "slideSwitch()", 5000 );
});
});
$.fn.imagesLoaded2 = function(callback){
var elems = this.filter('img'),
len = elems.length;
elems.bind('load',function(){
if (--len <= 0){ callback.call(elems,this); }
}).each(function(){
// cached images don't fire load sometimes, so we reset src.
if (this.complete || this.complete === undefined){
var src = this.src || $(this).data('src');
// webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
// data uri bypasses webkit log warning (thx doug jones)
this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
this.src = src;
}
});
return this;
};