0.4.0 • Published 7 years ago

css-math v0.4.0

Weekly downloads
25
License
MIT
Repository
github
Last release
7 years ago

mizmoz.com / css-math

Simple library for performing math operations on css properties.

Installation

NPM

npm install --save css-math

Yarn

yarn add css-math

API

Parser

import { parser } from 'css-math';

// the parser will the value with the provided unit only a single unit type can be 
// provided right now. Only %, em, rem, px 
parser('10px * 5'); // 50px
parser('10px + 10px'); // 20px

// percents, be default we round to 6 decimal places
parser('100% / 3'); // 33.333333%

// a more complex example
parser('1px + (8 * (8 + 2))'); // 81px

Fraction ( > 0.2 )

Return the value of the fraction of the supplied number

import { fraction } from 'css-math';

fraction('1/3', '100%'); // 33.333333%
fraction('4/2', '500px'); // 1000px
fraction('25%', '800px'); // 200px

Max ( > 0.3 )

Find the max value from the provided list

import { max } from 'css-math';

max(['15%', '100%', '50%']); // 100%

Min ( > 0.3 )

Find the min value from the provided list

import { min } from 'css-math';

min(['800px', '600px', '1024px']); // 600px

Helpers

Get padding box values

Find the top, right, bottom & left padding values from a string

import { getPaddingBox } from 'css-math';

getPaddingBox('10px 20px'); // { top: 10px, bottom: 10px, left: 20px, right: 20px, width: 40px, height: 20px }

Parse value

Parse a string and return it's numeric value and unit type

import { parseValuesAndUnit } from 'css-math';

parseValuesAndUnit('10px'); // { value: 10, unit: px }

Roadmap

Add support for setting a base for a unit

parser('10px * 1.5rem', { rem: '15px' }) // 150px
parser('100px + 10%', { percent: '1280px' }) // 228px
0.4.0

7 years ago

0.3.8

7 years ago

0.3.7

7 years ago

0.3.6

7 years ago

0.3.5

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago