• Stars
    star
    256
  • Rank 159,219 (Top 4 %)
  • Language
    JavaScript
  • Created over 7 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Makes the UI elements scalable to fit inside the container area.

Scalable

Makes the UI elements scalable to fit inside the container area.

Demo

Live examples

Demo

Install

npm install scalable --save

Usage

var scalable = new Scalable(containerEl, options);

Options

  • align: left | center | right Horizontal alignment of an element. default: left
  • verticalAlign: top | center | bottom Vertical alignment of an element. default: top
  • containerHeight: fixed | auto Behaviorur of container height property default: fixed
    • fixed - The element fits inside the container.
    • auto - Enlargement of the element increases the height of the container.
  • minWidth: Minimum width of an element.
  • maxWidth: Maximum width of an element.
  • minScale: Minimum scale of an element.
  • maxScale: Maximum width of an element.