Package Exports
- css-viewport-units-transform
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-viewport-units-transform) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
css-viewport-units-transform
Transform CSS viewport units of a Javascript style object to pixels based on window dimensions.
Supports vw
, vh
, vmin
and vmax
units.
import { transform } from "css-viewport-units-transform";
// or const transform = require("css-viewport-units-transform").transform;
transform(
{
fontSize: "10vw"
},
{
width: 480,
height: 100
}
);
↓ ↓ ↓ ↓ ↓ ↓
{
fontSize: 48;
}
or
transform(
{
myClass: {
fontSize: "10vh"
}
},
{
width: 480,
height: 100
}
);
↓ ↓ ↓ ↓ ↓ ↓
{
myClass: {
fontSize: 10,
}
}
Dependencies
- None