2.2.0 • Published 3 months ago

flickr-justified-gallery v2.2.0

Weekly downloads
43
License
MIT
Repository
github
Last release
3 months ago

Flickr's Justified Gallery

fjGallery.min.js

Flickr justified images gallery layout.

Online Demo

Table of Contents

WordPress Plugin

Visual Portfolio

We made WordPress plugin to easily create image galleries and portfolios in your blog with masonry, tiles and Flickr's Justified Gallery layouts.

Demo: https://visualportfolio.co/

Download: https://wordpress.org/plugins/visual-portfolio/

Import fjGallery

Use one of the following examples to import fjGallery.

ESM

We provide a version of fjGallery built as ESM (fjGallery.esm.js and fjGallery.esm.min.js) which allows you to use fjGallery as a module in your browser, if your targeted browsers support it.

<script type="module">
  import fjGallery from "fjGallery.esm.min.js";
</script>

ESM CDN

<script type="module">
  import fjGallery from "https://cdn.jsdelivr.net/npm/flickr-justified-gallery@2.1/+esm";
</script>

UMD

fjGallery may be also used in a traditional way by including script in HTML and using library by accessing window.fjGallery.

<link href="fjGallery.css" rel="stylesheet">
<script src="fjGallery.min.js"></script>

UMD CDN

<link href="https://cdn.jsdelivr.net/npm/flickr-justified-gallery@2.1/dist/fjGallery.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/flickr-justified-gallery@2.1/dist/fjGallery.min.js"></script>

CJS (Bundlers like Webpack)

Install fjGallery as a Node.js module using npm

npm install flickr-justified-gallery

Import fjGallery by adding this line to your app's entry point (usually index.js or app.js):

import fjGallery from "flickr-justified-gallery";

Add Styles

These styles required to set proper image position. Import style from /dist/fjGallery.css.

Prepare HTML

<div class="fj-gallery">
  <div class="fj-gallery-item">
    <img src="<image_url_here>" alt="" width="200" height="200">
  </div>
  <div class="fj-gallery-item">
    <img src="<image_url_here>" alt="" width="200" height="200">
  </div>
  ...
</div>

Run fjGallery

A. JavaScript way

fjGallery(document.querySelectorAll('.fj-gallery'), {
  itemSelector: '.fj-gallery-item'
});

B. jQuery way

$('.fj-gallery').fjGallery({
  itemSelector: '.fj-gallery-item'
});

No conflict (only if you use jQuery)

Sometimes to prevent existing namespace collisions you may call .noConflict on the script to revert the value of.

const fjGalleryPlugin = $.fn.fjGallery.noConflict() // return $.fn.fjGallery to previously assigned value
$.fn.newFjGallery = fjGalleryPlugin // give $().newFjGallery the fjGallery functionality

Options

NameTypeDefaultDescription
itemSelectorstring.fj-gallery-itemItems selector.
imageSelectorstringimgImage selector, will find in itemSelector.
gutterint/object10Gutter between items, supports object like { horizontal: 10, vertical: 10 }.
rowHeightint320Rows height.
rowHeightTolerancefloat0.25How far row heights can stray from rowHeight. 0 would force rows to be the rowHeight exactly and would likely make it impossible to justify. The value must be between 0 and 1.
maxRowsCountintNumber.POSITIVE_INFINITYLimits the number of rows to show at this number regardless of how many items still need to be laid out.
edgeCaseMinRowHeightfloat0.5Sets the minimum height for each row in a layout, based on the targetRowHeight
edgeCaseMaxRowHeightfloat2.5Sets the maximum height for each row in a layout, based on the targetRowHeight
lastRowstringleftLast row align. Available values: left, center, right, hide.
transitionDurationstringbool0.3sDuration of the transition when items change position, set in a CSS time format. Set boolean false to disable transitions.
calculateItemsHeightboolfalseCalculate items height in order to support image captions and other content, so rows can be displayed properly.
resizeDebounceint100Window resize debounce timeout in ms.

Events

Events used the same way as Options.

NameDescription
onInitCalled after init end.
onDestroyCalled after destroy.
onAppendImagesCalled after appended new images (available 1 argument with images array).
onBeforeJustifyCalled before justification algorythm start working.
onJustifyCalled after images justified.

Methods

NameResultDescription
resize-Justify images and container. Called on window resize and load.
appendImages-Called after you appended new items in the gallery container, required 1 argument with new items array.
updateOptions-Update current gallery options and recalculate it, required 1 argument with new options.
destroy-Destroy fjGallery and set block as it was before plugin init.

Call methods example

// Javascript
fjGallery(document.querySelectorAll('.fj-gallery'), 'destroy');

// jQuery
$('.fj-gallery').fjGallery('destroy');

For Developers

Installation

  • Run npm install in the command line

Building

  • npm run dev to run build and start local server with files watcher
  • npm run build to run build

Linting

  • npm run js-lint to show eslint errors
  • npm run js-lint-fix to automatically fix some of the eslint errors
2.2.0

3 months ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.0

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago