文件名称:postcss-rpxtopx:一个 PostCSS 插件,用于将小程序的 rpx 单位转换为 px
文件大小:63KB
文件格式:ZIP
更新时间:2024-06-20 07:56:35
JavaScript
postcss-rpxtopx 一个 PostCSS 插件,用于将小程序的 rpx 单位转换为 px 安装 你可以通过 或 安装 $ yarn add postcss-rpxtopx --dev $ npm install postcss-rpxtopx --save-dev 使用 输入/输出 // 输入 h1 { margin: 0 0 20rpx; font-size: 32rpx; line-height: 1.2; letter-spacing: 1rpx; } // 输出 h1 { margin: 0 0 20px; font-size: 32px; line-height: 1.2; letter-spacing: 1px; } 例子 const fs = require('fs'); const postcss = require('
【文件预览】:
postcss-rpxtopx-master
----yarn.lock(195KB)
----.eslintrc.js(309B)
----.circleci()
--------config.yml(228B)
----lib()
--------rpx-unit-regex.js(363B)
----LICENSE(1KB)
----jest.config.js(189B)
----__tests__()
--------.eslintrc.js(52B)
--------index.test.js(2KB)
----README.md(1KB)
----prettier.config.js(43B)
----.editorconfig(147B)
----.gitignore(47B)
----index.js(392B)
----package.json(1KB)