Skip to content
/ json2mq Public

Generate media query string from JSON or javascript object

License

Notifications You must be signed in to change notification settings

akiran/json2mq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e3c96dd · Oct 27, 2018

History

10 Commits
Jan 15, 2015
Nov 21, 2014
Nov 22, 2014
Oct 27, 2018
Jan 15, 2015
Jan 15, 2015

Repository files navigation

json2mq

json2mq is used to generate media query string from JSON or javascript object.

Install

npm install json2mq

Usage

var json2mq = require('json2mq');
json2mq({minWidth: 100, maxWidth: 200});
// -> '(min-width: 100px) and (max-width: 200px)'
  • Media type
json2mq({screen: true});  // -> 'screen'
  • Media type with negation
json2mq({handheld: false});  // -> 'not handheld'
  • Media features can be specified in camel case
json2mq({minWidth: 100, maxWidth: 200});
// -> '(min-width: 100px) and (max-width: 200px)'
  • px is added to numeric dimension values
json2mq({minWidth: 100, maxWidth: '20em'});
// -> '(min-width: 100px) and (max-width: 20em)'
  • Multiple media queries can be passed as an array
json2mq([{screen: true, minWidth: 100}, {handheld: true, orientation: 'landscape'}]); 
// -> 'screen and (min-width: 100px), handheld and (orientation: landscape)'

Contributors

About

Generate media query string from JSON or javascript object

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published