A JavaScript plugin to contain an element within its parent element
Find a file
2015-07-02 13:05:28 -04:00
.gitignore Adding gulp to minify with uglyjs 2015-06-30 16:50:22 -04:00
bower.json Adding myself to bower.json authors 2015-06-30 16:36:12 -04:00
contain-element.js Fix parent position check before applying relative style if none of the valid positions are used 2015-07-02 13:05:28 -04:00
contain-element.min.js Use an array comparison to check for a valid parent position rather than three separate comparisons 2015-07-02 11:41:37 -04:00
gulpfile.js Adding gulp to minify with uglyjs 2015-06-30 16:50:22 -04:00
LICENSE Change WilliamsNY to Wiliams New York 2015-07-01 11:17:20 -04:00
package.json Adding gulp to minify with uglyjs 2015-06-30 16:50:22 -04:00
README.md Use center instead of middle everywhere. 2015-07-01 14:05:48 -04:00

Contain Element

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

Description

The plugin scales an element to the minimum size required for it to be completely contained within its parent, and retains its original aspect ratio by cropping portions that don't fit based on its vertical and horizontal alignment (by default both are set to: center).

Demo

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
  • Includes function to update the size and position

Usage

window.onload = function() {
    var contain = new 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: center)
        halign: 'left' // (optional) horizontal alignment: left|right (unset: center)
    });

    // (example) update the size and positioning on window resize
    window.onresize = contain.update;

    // (example) update the size and positioning on orientation change
    screen.addEventListener('orientationchange', contain.update);
};

Credits

Written by Williams New York

Authors

LICENSE

Licensed under the MIT license.