Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : 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, Directory : /var/www/ptbos.biz/public_html/theme/js_lama/ |
Upload File : |
// https://learn.jquery.com/plugins/basic-plugin-creation/ (function($) { //noinspection JSAnnotator $.fn.pack = function(options) { var settings = $.extend({ // margin: 10px; }, options ); // this should be a container div with a series of img or figure children. $(this).children().each(function() { if ($(this).is("img")) { var img = this; $(this).wrap('<div />'); var flexWrapper = $(this).parent(); } else { // <figure> or <a> var img = $(this).find("img")[0]; var flexWrapper = $(this) } let aspect = img.naturalWidth / img.naturalHeight; flexWrapper.css({ flex: aspect + "" }); }); return this; // }); }; })(jQuery);