A JavaScript plugin to contain an element within its parent element
Find a file
2015-06-30 16:36:12 -04:00
bower.json Adding myself to bower.json authors 2015-06-30 16:36:12 -04:00
contain-element.js Use || instead of ?: 2015-06-30 16:34:11 -04:00
contain-element.min.js Use || instead of ?: 2015-06-30 16:34:11 -04:00
LICENSE Initial commit 2015-06-30 16:09:53 -04:00
README.md Author links should include github link 2015-06-30 16:35:47 -04:00

Contain Element

A JavaScript plugin to contain an element within its parent element.

Features

  • Pure JavaScript with no dependencies
  • Configures the horizontal and vertical alignment of the contained element
  • Can detect the native size or have it specified at runtime

Usage

window.onload = function() {
    containElement({
        id: 'element', // the id of the element to be contained
        width: '100', // (optional) element width in pixels (unset: element width)
        height: '100', // (optional) element height in pixels (unset: element height)
        valign: 'top', // (optional) vertical alignment: top|bottom (unset: middle)
        halign: 'left' // (optional) horizontal alignment: left|right (unset: middle)
    });
};

Credits

Written by Williams New York

Authors

LICENSE

Licensed under the MIT license.