| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/js/ |
Upload File : |
(function($) {
/**
* Builds a gallery grid of items.
*
* @class FLBuilderGalleryGrid
* @since 1.2.3
*/
FLBuilderGalleryGrid = function(settings)
{
$.extend(this, settings);
if($(this.wrapSelector).length > 0) {
$(window).on('resize', $.proxy(this.resize, this));
this.resize();
}
};
/**
* Prototype for new instances.
*
* @since 1.2.3
* @property {Object} prototype
*/
FLBuilderGalleryGrid.prototype = {
/**
* A CSS selector for the element that wraps
* the gallery items.
*
* @since 1.2.3
* @property {String} wrapSelector
*/
wrapSelector : '.fl-gallery-grid',
/**
* A CSS selector for the gallery items.
*
* @since 1.2.3
* @property {String} itemSelector
*/
itemSelector : '> *',
/**
* The maximum width of the items.
*
* @since 1.2.3
* @property {Number} itemWidth
*/
itemWidth : 400,
/**
* A ratio to use for the item height.
*
* @since 1.2.3
* @property {Number} itemHeight
*/
itemHeight : 0.75,
/**
* Callback that fires when the window is resized
* to resize the gallery items.
*
* @since 1.2.3
* @method resize
*/
resize: function()
{
var winWidth = $(window).width(),
wrap = $(this.wrapSelector),
wrapWidth = wrap[0].getBoundingClientRect().width,
numCols = winWidth > 480 ? Math.ceil(wrapWidth/this.itemWidth) : 1,
items = wrap.find(this.itemSelector),
itemWidth = wrapWidth/numCols,
itemHeight = itemWidth * this.itemHeight;
// Browser bug fix. One column images are streched otherwise.
if ( 1 === numCols ) {
itemWidth -= 0.5;
}
// Set the item width and height.
items.css({
'float' : 'left',
'height' : itemHeight + 'px',
'width' : itemWidth + 'px'
});
}
};
})(jQuery);