0.1.0 • Published 10 years ago

percent-string v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

percent-string

create '%' appended strings for settings CSS properties

installation

npm:

$ npm install percent-string

component:

$ component install binocarlos/percent-string

usage

Use this module to convert numbers into percent strings

var percent = require('percent-string')

document.querySelector('#thing').style.left = percent(24)
document.querySelector('#thing').style.top = percent('24%')

api

var string = percent(value, max)

returns a string of the form: num + '%' regardless of the input type.

The zero value is '0%'

max indicates the scale so you can do 0.4 = 40%

var st = percent(.4, 1)

// st = '40%'

license

MIT

0.1.0

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago