nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
33 lines (30 loc) • 859 B
text/typescript
import type { ExtractPropTypes } from 'vue'
import { commonProps, isH5, makeNumericProp, makeStringProp } from '../_utils'
export const stickyProps = {
...commonProps,
/**
* @description 吸顶距离
*/
offsetTop: makeNumericProp(0),
/**
* @description 吸附时的层级
*/
zIndex: {
type: [Number, String],
default: 2000,
},
/**
* @description 导航栏高度,自定义导航栏时,需要传入此值
* - H5端的导航栏属于“自定义”导航栏的范畴,因为它是非原生的,与普通元素一致
*/
customNavHeight: makeNumericProp(isH5 ? 44 : 0),
/**
* @description 是否开启吸顶功能
*/
disabled: Boolean,
/**
* @description 吸顶区域的背景颜色
*/
bgColor: makeStringProp('transparent'),
}
export type StickyProps = ExtractPropTypes<typeof stickyProps>