Git Product home page Git Product logo

equalizer's Introduction

Equalizer

npm version bower version dependencies devDependencies

Dependency free package to keep HTML elements with equal height!

Install

Using bower

bower install equalizer

Using npm

npm install equalizer

What is Equalizer?

Equalizer is small JavaScript file. Sometimes you need to keep some block with equal height, e.g all divs in row. Equalizer gets maximum height and set it to all blocks as min-height property.

Before equalize: before equalize

After: before equalize

How to use

Import directly in HTML through <script> tag

After import equalizer directly in HTML it will expose in global variable named Equalizer

<script src="/path/to/script/equalizer.min.js"></script>
<script>
    var blocks = new Equalizer('.row .align');
    blocks.align();
</script>

CommonJS (node style), e.g. using browserify

var Equalizer = require('equalizer'),
    blocks = new Equalizer('.row .align');

blocks.align();

RequireJS (AMD)

requirejs(['equalizer'], function(Equalizer) {
    var blocks = new Equalizer('.row .align');
    blocks.align();
});

Simple alignment

Equalizer('.row .align').align();

License

The MIT License. Copyright (c) 2014 Szymon Krajewski.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.