Вход Регистрация
Файл: zyro/js/WB_Gallery.class.js
Строк: 305
<?php
/**
 * Gallery element class
 * 
 * @author Marius Tomas <marius@profis.lt>
 * @version 2.1.1, 2012-08-30
 * @param {Object} data
 */
function WB_Gallery(data) { this.__construct(data); }

WB_Gallery.prototype.elem = null;
WB_Gallery.prototype.type = "thumbs";
WB_Gallery.prototype.slideshowInterval = 10;
WB_Gallery.prototype.slideshowSpeed = 400;
WB_Gallery.prototype.images = [];
WB_Gallery.prototype.imageIndex = 0;
WB_Gallery.prototype.slideshowTimer = null;
WB_Gallery.prototype.displayedImage = null;
WB_Gallery.prototype.loadingImage = null;
WB_Gallery.prototype.listImgCont = null;
WB_Gallery.prototype.thumbImgCont = null;
WB_Gallery.prototype.fullThumbWidth = 0;
WB_Gallery.prototype.fullThumbHeight = 0;
WB_Gallery.prototype.thumbWidth = 64;
WB_Gallery.prototype.thumbHeight = 64;
WB_Gallery.prototype.width = 320;
WB_Gallery.prototype.height = 240;
WB_Gallery.prototype.border = null;
WB_Gallery.prototype.galleryPath = "";

/**
 * Construct gallery element
 * @param data gallery data object
 */
WB_Gallery.prototype.__construct = function(data) {
    
this.elem = $("#" + data.id);
    
this.slideshowTimer = null;
    
this.id = data.id;
    
this.type = data.type;
    
this.thumbWidth = data.thumbWidth;
    
this.thumbHeight = data.thumbHeight;
    
this.slideshowInterval = data.interval;
    
this.slideshowSpeed = data.speed;
    
this.images = data.images;
    
this.imageIndex = 0;
    
this.border = data.border;
    
this.width = this.elem.width();
    
this.height = this.elem.height();
    switch (
this.type) {
        case 
"slideshow": this.renderSlideshow(); break;
        case 
"list": this.renderList(); break;
        default: 
this.renderThumbs(); break;
    }
};

WB_Gallery.prototype.renderThumbs = function() {
    
this.displayedImage = null;
    
this.loadingImage = null;
    var 
elem = null;
    
this.elem.html(elem = $('<div style="width: 100%; height: 100%; overflow: auto;"></div>'));
    for (var 
i = 0; i < this.images.length; i++) {
        
this.addImage(elem, this.images[i], false);
    }
};

WB_Gallery.prototype.renderSlideshow = function() {
    var 
thisClass = this;
    
this.displayedImage = null;
    
this.loadingImage = null;
    var 
cont = $(
        
'<div class="gallery-slideshow">'+
            
'<div class="gallery-slide-image" style="overflow: hidden;"></div>'+
            
'<div class="gallery-slide-left"></div>'+
            
'<div class="gallery-slide-right"></div>'+
        
'</div>'
    
);
    
this.elem.html(cont);
    
this.listImgCont = cont.children("div").eq(0);
    var 
larr = cont.children("div").eq(1);
    var 
rarr = cont.children("div").eq(2);
    
larr.css({left: "0", top: Math.floor((cont.innerHeight() - larr.height()) / 2) + "px"});
    
rarr.css({right: "0", top: Math.floor((cont.innerHeight() - larr.height()) / 2) + "px"});

    
larr.click(function() {
        
thisClass.slideshowPrev();
    });

    
rarr.click(function() {
        
thisClass.slideshowNext();
    });

    $(
window).on('resize', function() {
        var 
w = thisClass.elem.width(), h = thisClass.elem.height();
        if (
w !== thisClass.width || h !== thisClass.height) {
            
thisClass.width = w;
            
thisClass.height = h;
            
thisClass.displayImage(thisClass.listImgCont);
        }
    });

    
this.slideshowTimer = setTimeout(function() {
        
thisClass.slideshowNext();
    }, 
this.slideshowInterval * 1000);
    
this.imageIndex = -1;
    
this.slideshowNext();
};

WB_Gallery.prototype.renderList = function() {
    var 
thisClass = this;
    
this.elem.empty();
    
this.displayedImage = null;
    
this.loadingImage = null;

    var 
w = this.width;
    var 
h = this.height;
    var 
tw = this.thumbWidth;
    var 
th = this.thumbHeight;

    
//var pad = 3;
    
    
var thumbcont = $('<div></div>');
    
this.callback = function() {
        var 
img = thisClass.imageElems[thisClass.imageIndex];
        $(
img.parentNode.parentNode.parentNode).children(".tmb-selected").removeClass("tmb-selected");
        $(
img.parentNode.parentNode).addClass("tmb-selected");
    };
    
this.imageElems = {};

    
//var images = [];
    
for (var i = 0; i < this.images.length; i++) {
        var 
img = this.addImage(thumbcont, this.images[i], true);
        
img.idx = i;
        
this.imageElems[img.idx] = img;
        $(
img).css({cursor: "pointer"});
        $(
img).click(function() {
            
thisClass.imageIndex = this.idx;
            
thisClass.displayImage(thisClass.listImgCont, thisClass.callback);
        });
        
//var par_in = $(img.parentNode);
        
var par = $(img.parentNode.parentNode);
        if (
i === this.imageIndex) {
           
par.addClass("tmb-selected");
            
tw = this.thumbWidth + 8;
            
th = this.thumbHeight + 8;
          }
    }

    
this.fullThumbWidth = tw;
    
this.fullThumbHeight = th;

    
thumbcont.css({position: "absolute", left: "0", top: "5px", width: (tw * this.images.length) + "px", height: th + "px"});

    var 
galcont = $('<div></div>');
    
galcont.css({position: "relative", width: w + "px", height: h + "px"});
    
galcont.addClass("gallery-list");

    var 
imgcont = $('<div></div>');
    
imgcont.css({position: "relative", width: w + "px", height: (h - th - 10) + "px", overflow: "hidden"});
    
imgcont.addClass("gallery-list-image");

    var 
thumbdiv_in1 = document.createElement("DIV");
    $(
thumbdiv_in1).css({position: "relative", "float": "left", width: "16px", height: (th + 10) + "px", cursor: "pointer"});
    
thumbdiv_in1.className = "gallery-list-left";
    $(
thumbdiv_in1).click(function() {
        
thisClass.slideBy(-thisClass.fullThumbWidth * 3);
    });

    var 
thumbdiv_in2 = $('<div></div>');
    
thumbdiv_in2.css({position: "relative", "float": "left", width: (w-32) + "px", height: (th + 10) + "px", overflow: "hidden"});
    
thumbdiv_in2.addClass("gallery-list-thumbs");

    var 
thumbdiv_in3 = document.createElement("DIV");
    $(
thumbdiv_in3).css({position: "relative", "float": "left", width: "16px", height: (th + 10) + "px", cursor: "pointer"});
    
thumbdiv_in3.className = "gallery-list-right";
    $(
thumbdiv_in3).click(function() {
        
thisClass.slideBy(thisClass.fullThumbWidth * 3);
    });

    var 
thumbdiv = $('<div></div>');
    
thumbdiv.css({position: "relative", width: w + "px", height: (th + 10) + "px", overflow: "hidden"});

    
thumbdiv_in2.append(thumbcont);

    
thumbdiv.append(thumbdiv_in1);
    
thumbdiv.append(thumbdiv_in2);
    
thumbdiv.append(thumbdiv_in3);

    
galcont.append(imgcont);
    
galcont.append(thumbdiv);
    
    $(
window).on('resize', function() {
        var 
w = thisClass.elem.width(), h = thisClass.elem.height();
        if (
w !== thisClass.width || h !== thisClass.height) {
            
thisClass.width = w;
            
thisClass.height = h;
            
galcont.css({width: w, height: h});
            
imgcont.css({width: w, height: (h - th - 10)});
            
thumbdiv_in2.css({width: (w - 32)});
            
thumbdiv.css({width: w});
            
thisClass.displayImage(thisClass.listImgCont);
        }
    });

    
this.listImgCont = imgcont;
    
this.thumbImgCont = thumbdiv_in2;
    
this.elem.append(galcont);
    
// this.displayImage(this.listImgCont);
    
    
this.slideshowTimer = setTimeout(function() {
        
thisClass.slideshowNext(thisClass.callback);
    }, 
this.slideshowInterval * 1000);
    
this.imageIndex = -1;
    
this.slideshowNext(this.callback);
};

WB_Gallery.prototype.slideBy = function(delta) {
    var 
cont = $(this.thumbImgCont);
    var 
div = $(this.thumbImgCont).children("div").eq(0);
    var 
pos = div.position();
    var 
x = pos ? pos.left : 0;
    
x -= delta;
    var 
minx = -(div.width() - cont.width());
    if( 
x < minx ) x = minx;
    if( 
x > 0 ) x = 0;
    
div.animate({left: x + "px"});
};

WB_Gallery.prototype.calcImageStyles = function(displayCont, cont, image) {

    var 
minpadding = 5;
    var 
borderWidth = (this.border.style === 'none') ? 0 : this.border.weight;
    var 
maxWidth = (displayCont.innerWidth() - (minpadding + borderWidth) * 2);
    var 
maxHeight = (displayCont.innerHeight() - (minpadding + borderWidth) * 2);

    var 
w = image.width;
    var 
h = image.height;
    if (
w > maxWidth || h > maxHeight) { // One of these is larger than the window
        
var ratio1 = w / maxWidth;
        var 
ratio2 = h / maxHeight;
        var 
ratio = (ratio1>ratio2)?ratio1:ratio2;
        
w = Math.floor(w / ratio);
        
h = Math.floor(h / ratio);
    }
    return {
        
left: Math.floor((maxWidth - w) / 2 + minpadding),
        
top: Math.floor((maxHeight - h) / 2 + minpadding),
        
image_width: w,
        
image_height: h
    
};
};

WB_Gallery.prototype.displayImage = function(display_cont, callback) {
    var 
thisClass = this;

    var 
image = this.images[this.imageIndex];
    if (!
image) return;
    
    if (
typeof callback == 'function') callback();
    var 
cont = $("<div></div>");
    
cont.imageIndex = this.imageIndex;
    var 
jcont = cont;
    
cont.addClass("gallery-image");
    
cont.css(this.border.css);

    var 
stl = this.calcImageStyles(display_cont, cont, image);

    
jcont.css({
        
display: "none",
        
position: "absolute",
        
left: stl.left + "px",
        
top: stl.top + "px"
    
});
    var 
img = new Image();
    
cont.append(img);
    
img.width = stl.image_width;
    
img.height = stl.image_height;
    $(
img).css({ width: stl.image_width, height: stl.image_height });
    
img.alt = "";
    
img.onload = function() {
        if (
thisClass.displayedImage) {
            
thisClass.displayedImage.fadeOut(thisClass.slideshowSpeed);
        }
        
jcont.fadeIn(thisClass.slideshowSpeed, function() {
            if (
thisClass.displayedImage) {
                
thisClass.displayedImage.remove();
            }
            if (
cont.parent() && cont.parent().size()) {
                
thisClass.displayedImage = cont;
            } else {
                
thisClass.displayedImage = null;
            }
            
thisClass.loadingImage = null;
            if (
thisClass.slideshowTimer) {
               
clearTimeout(thisClass.slideshowTimer);
                
thisClass.slideshowTimer = setTimeout(function(){
                    
thisClass.slideshowNext(thisClass.callback);
                }, 
thisClass.slideshowInterval * 1000);
            }
        });
    };
    
display_cont.append(cont);
    
this.loadingImage = cont;
    
img.src = image.image;
    $(
img).css({cursor: "pointer"});
    var 
thisImage = image;
    $(
img).fancybox({
        
href: thisImage.image,
        
"hideOnContentClick": true
    
});
};

WB_Gallery.prototype.slideshowNext = function(callback) {
    if (
this.images.length === 0) return;
    
this.imageIndex++;
    if (
this.imageIndex >= this.images.length) {
        
this.imageIndex = 0;
    }
    
this.displayImage(this.elem.children().first().children().first(), callback);
};

WB_Gallery.prototype.slideshowPrev = function(callback) {
    if (
this.images.length === 0) return;
    
this.imageIndex--;
    if (
this.imageIndex < 0) {
        
this.imageIndex = this.images.length - 1;
    }
    
this.displayImage(this.elem.children().first().children().first(), callback);
};

WB_Gallery.prototype.addImage = function(cont, image, nolightbox) {
    var 
div = document.createElement("DIV");
    
div.className = "wb_thumb";

    var 
bdiv = document.createElement("DIV");

    var 
img = document.createElement("IMG");
    
img.src = image.thumb;
    
img.width = this.thumbWidth;
    
img.height = this.thumbHeight;
    
img.alt = "";
    $(
img).css({zIndex: "1"});
    if (!
nolightbox) {
        $(
img).css({cursor: "pointer"});
        var 
thisImage = image;
        $(
img).fancybox({
            
href: thisImage.image,
            
"hideOnContentClick": true
        
});
    }
    
bdiv.appendChild(img);

    
div.appendChild(bdiv);
    
cont.append(div);
    return 
img;
};
?>
Онлайн: 2
Реклама