Вход Регистрация
Файл: public_html/js/jquery.masonry.js
Строк: 266
<?php
/*************************************************
**  jQuery Masonry version 1.0.1
**  copyright David DeSandro, licensed GPL & MIT
**  http://desandro.com/resources/jquery-masonry
**************************************************/
;(function($){  

    $.fn.
masonry = function(optionscallback) { 

        function 
placeBrick($bricksetCountsetYsetSpanprops) {
            var 
shortCol 0;
            
            for ( 
i=0setCounti++ ) {
                if ( 
setY[i] < setYshortCol ] ) shortCol i;
            }

            
$brick.css({
                
topsetYshortCol ],
                
leftprops.colW shortCol props.posLeft
            
});

            for ( 
i=0setSpani++ ) {
                
props.colYshortCol ] = setYshortCol ] + $brick.outerHeight(true) ;
            }
        }


        function 
masonrySetup($walloptsprops) {
            
props.$bricks opts.itemSelector == undefined ?
                        
opts.$brickParent.children() :
                        
opts.$brickParent.find(opts.itemSelector);

            if ( 
opts.columnWidth == undefined) {
                
props.colW props.masoned ?
                        
$wall.data('masonry').colW :
                        
props.$bricks.outerWidth(true);
            } else {
                
props.colW opts.columnWidth;
            }

            
props.colCount Math.floor$wall.width() / props.colW ) ;
            
props.colCount Math.maxprops.colCount);
        }


        function 
masonryArrange($walloptsprops) {
            
// if masonry hasn't been called before
            
if( !props.masoned $wall.css'position''relative' );            
            
            if ( !
props.masoned || opts.appendedContent != undefined ) {
                
// just the new bricks
                
props.$bricks.css'position''absolute' );
            }

            
// get top left position of where the bricks should be
            
var cursor = $('<div />');
            
$wall.prependcursor );
            
props.posTop =  Math.roundcursor.position().top );
            
props.posLeft Math.roundcursor.position().left );
            
cursor.remove();

            
// set up column Y array
            
if ( props.masoned && opts.appendedContent != undefined ) {
                
// if appendedContent is set, use colY from last call
                
props.colY $wall.data('masonry').colY;
                
                
/*
                *  in the case that the wall is not resizeable,
                *  but the colCount has changed from the previous time
                *  masonry has been called
                */
                
for (i$wall.data('masonry').colCountprops.colCounti++) {
                    
props.colY[i] = props.posTop;
                };
                
            } else {
                
props.colY = [];
                for ( 
i=0props.colCounti++) {
                    
props.colY[i] = props.posTop;
                }    
            }

            
// layout logic
            
if ( opts.singleMode ) {
                
props.$bricks.each(function(){
                    var 
$brick = $(this);
                    
placeBrick($brickprops.colCountprops.colY1props);
                });            
            } else {
                
props.$bricks.each(function() {
                    var 
$brick = $(this);
                
                    
//how many columns does this brick span
                    
var colSpan Math.ceil$brick.outerWidth(true) / props.colW);
                    
colSpan Math.mincolSpanprops.colCount );

                    if ( 
colSpan == ) {
                        
// if brick spans only one column, just like singleMode
                        
placeBrick($brickprops.colCountprops.colY1props);
                    } else {
                        
// brick spans more than one column

                        //how many different places could this brick fit horizontally
                        
var groupCount props.colCount colSpan
                        var 
groupY = [0];
                        
// for each group potential horizontal position
                        
for ( i=0groupCounti++ ) {
                            
groupY[i] = 0;
                            
// for each column in that group
                            
for ( j=0colSpanj++ ) {
                                
// get the maximum column height in that group
                                
groupY[i] = Math.maxgroupY[i], props.colY[i+j] );
                            }
                        }
                
                        
placeBrick($brickgroupCountgroupYcolSpanprops);
                    }
                }); 
//        /props.bricks.each(function() {
            
}  //         /layout logic
        
            // set the height of the wall to the tallest column
            
props.wallH 0;
            for ( 
i=0props.colCounti++ ) {
                
props.wallH Math.maxprops.wallHprops.colY[i] );
            }
            
$wall.heightprops.wallH props.posTop );

            
// provide props.bricks as context for the callback
            
callback.callprops.$bricks );
            
            
// set all data so we can retrieve it for appended appendedContent
            //        or anyone else's crazy jquery fun
            
$wall.data('masonry'props );


        } 
//  /masonryArrange function


        
function masonryResize($walloptsprops) {
            var 
prevColCount $wall.data('masonry').colCount;
            
masonrySetup($walloptsprops);
            if ( 
props.colCount != prevColCount masonryArrange($walloptsprops); 
        }


        
/*
        *  let's begin
        *  IN A WORLD...
        */
        
return this.each(function() {  

            var 
$wall = $(this);

            var 
props = $.extend( {}, $.masonry );

            
// checks if masonry has been called before on this object
            
props.masoned $wall.data('masonry') != undefined;
        
            var 
previousOptions props.masoned $wall.data('masonry').options : {};

            var 
opts =  $.extend(
                            {},
                            
props.defaults,
                            
previousOptions,
                            
options
                        
);  

            
// should we save these options for next time?
            
props.options opts.saveOptions opts previousOptions;

            
//picked up from Paul Irish
            
callback callback || function(){};

            if ( 
props.masoned && opts.appendedContent != undefined ) {
                
// if we're dealing with appendedContent
                
opts.$brickParent opts.appendedContent;
            } else {
                
opts.$brickParent $wall;
            }
            
            if ( 
opts.$brickParent.children().length 0  ) {
                
// call masonry layout
                
masonrySetup($walloptsprops);
                
masonryArrange($walloptsprops);
            
                
// binding window resizing
                
var resizeOn previousOptions.resizeable;
                if ( !
resizeOn && opts.resizeable ) {
                    $(
window).bind('resize.masonry', function() { masonryResize($walloptsprops); } );
                }
                if ( 
resizeOn && !opts.resizeable ) $(window).unbind('resize.masonry');
            } else {
                
// brickParent is empty, do nothing, go back home and eat chips
                
return this;
            }

        });        
//        /return this.each(function()
    
};            //        /$.fn.masonry = function(options)



    
$.masonry = {
        
defaults : {
            
singleModefalse,
            
columnWidthundefined,
            
itemSelectorundefined,
            
appendedContentundefined,
            
saveOptionstrue,
            
resizeabletrue
        
},
        
colWundefined,
        
colCountundefined,
        
colYundefined,
        
wallHundefined,
        
masonedundefined,
        
posTop0,
        
posLeft0,
        
optionsundefined,
        
$bricksundefined,
        
$brickParentundefined
    
};

})(
jQuery);
?>
Онлайн: 1
Реклама