UNPKG

@antmjs/vantui

Version:

一套适用于Taro3及React的vantui组件库

22 lines 554 B
import { style } from '../wxs/utils'; import { addUnit } from '../wxs/add-unit'; function rootStyle(data) { return style([{ width: addUnit(data.width), height: addUnit(data.height), 'border-radius': addUnit(data.radius) }, data.radius ? 'overflow: hidden' : null]); } var FIT_MODE_MAP = { none: 'scaleToFill', fill: 'scaleToFill', cover: 'aspectFill', contain: 'aspectFit', widthFix: 'widthFix', heightFix: 'heightFix', scaleDown: 'aspectFit' }; function mode(fit) { return FIT_MODE_MAP[fit]; } export { rootStyle, mode };