z-indices

0.1.1 • Public • Published

z-indices

A simple javascript utility for calculating z-index.

Distributed as UMD module.

Installing

$ yarn add z-indices
# or 
$ npm install --save z-indices

Usage

Provide configuration dictionary object then pass arrays of keys to calculate z-index.

import zIndices from 'z-indices';
 
const zIndex = zIndices({
  'foreground': 10,
  'background': 0,
  'popup': 1000
});
 
zIndex(['foreground', 'popup']); // 1010

Development

  • Run tests: yarn test;
  • Build yarn build;

License

MIT © Dmitriy Semyushkin

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i z-indices

    Weekly Downloads

    1

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • devgru