@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
17 lines (16 loc) • 468 B
JavaScript
import { style } from '../wxs/style';
// import { addUnit } from '../wxs/add-unit'
function wrapStyle(data) {
return style({
transform: data.transform ? 'translate3d(0, ' + data.transform + 'px, 0)' : '',
top: data.fixed ? data.offsetTop + 'px' : '',
'z-index': data.zIndex
});
}
function containerStyle(data) {
return style({
height: data.fixed ? data.height + 'px' : '',
'z-index': data.zIndex
});
}
export { wrapStyle, containerStyle };