nkCreation / macy.js

Home Page:http://macyjs.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Macy.js

Macy.js is a lightweight dependency-free JavaScript library designed to sort items vertically into columns by finding an optimum layout with a minimum height.

Installing

Install with npm:

npm install macy

Install with Bower:

bower install macy

Usage

var macy_instance = Macy({
  // See below for all available options.
});

Options

container

Default: None

Use this option to specify your target container element to apply Macy too. All direct children of an element with this selector will become sortable items and a height applied to the target container.

columns

Default: 4

Define the default amount of columns to work with. Use the breakAt option to specify breakpoints for this value.

trueOrder

Default: true

Setting this to false will prioritise equalising the height of each column over the order of the items themselves.

margin

Default: 0 Adjust the margin between columns with a pixel value. Don’t forget you can still apply padding to the elements with standard CSS.

waitForImages

Default: false If set to true, Macy will wait for all images on the page to load before running. Set to false by default, it will run every time an image loads.

breakAt

Default: None This array allows you to specify how the total number of columns will change based on the width of the viewport. Setting an option to 780: 3 for example will adjust the column count to 3 when the viewport is <= 780px. If the viewport resizes after the page has loaded, Macy will rerun to ensure optimum sorting

If the column is set to one then Macy will remove all styling to leave you to style it perfectly on mobile.

Methods

Macy

Parameters: {Object} args - required

This is the initializing function. The function takes an object of properties listed above. The only required property is container which would be the selector for the element that contains all the elements you want to be layed out:

var macy = Macy({
    container: '#macy-container',
    trueOrder: false,
    waitForImages: false,
    margin: 24,
    columns: 6,
    breakAt: {
        1200: 5,
        940: 3,
        520: 2,
        400: 1
    }
});

From this point on whenever 'Macy' is specified it is referencing the variable you assign macy to when making the initial call.

recalculate

*Parameters: {Boolean} refresh - can be null & {Boolean} loaded -can be null *

When called this recalculates the entire layout, this becomes useful if you just used ajax to pull in more content:

macy_instance.recalculate();
runOnImageLoad

Parameters: {Function} - Function to run on image load & {Boolean} If true it will run everytime an image loadsl

runOnImageLoad is a method used to do something each time and image loads or after all images have been loaded. This helps when using Ajax to make sure the layout is worked out correctly when images are loading. Using this in conjunction with the recalculate function makes your layouts look great no matter how long it takes to load in your images:

macy_instance.runOnImageLoad(function () {
  macy_instance.recalculate(true);
}, true);

If you only require it to run once all the images have loaded you can acheive this by passing null as the first parameter:

macy_instance.runOnImageLoad(function () {
  console.log('I only get called when all images are loaded');
  macy_instance.recalculate(true, true);
});

If you only require the during function to run then only pass it one function:

macy_instance.runOnImageLoad(function () {
  console.log('Every time an image loads I get fired');
  macy_instance.recalculate(true);
}, true);
remove

Parameters: None

Remove does exactly what it says on the tin, it removes all styling and event listeners that Macy added to the DOM:

macy_instance.remove();
reInit

Parameters: None

Reinitialises the current macy instance;

macy_instance.reInit();

Notes

  • Browser support for all major browsers including IE11+
  • To support IE10 a dataset polyfill will have to be added

About

http://macyjs.com/


Languages

Language:JavaScript 100.0%