# 引入
import { transFormRem } from 't-comm';
// or
import { transFormRem} from 't-comm/lib/rem/index';
# transFormRem(content, factor, unit)
描述:
转化 rem 单位
参数:
参数名 | 类型 | 描述 |
---|---|---|
content | string | 输入内容 |
factor | number | 转化比例,默认 100 |
unit | string | 转化单位,默认 rpx |
返回: string
转化后的结果
示例
transFormRem('1.22rem')
// 122rpx
transFormRem('1.22rem', 50, 'px')
// 61px
transFormRem('.21rem', 50, 'px')
// 10.50px