ThAffix固钉
吴少文 2022/3/4 vue
# ThAffix图钉
将页面元素固定在可视区域
# 依赖说明
无
# 基本使用
<th-affix :offset="50">
<div>固定在顶部位移50位置</div>
</th-affix>
<th-affix :offset="100" position="bottom">
<div>固定在底部位移100位置</div>
</th-affix>
# Attributes
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|---|---|---|---|---|
| enabled | 是否开启 | Boolean | true | true/false |
| position | 固钉位置 | String | top | top/bottom |
| offset | 偏移距离 | Number | 0 | -- |
| delay | 监听间隔毫秒,根据需要动态设置监听延迟时间,注意值为毫秒 | Number | 0 | -- |
| zIndex | 固钉层级,同css样式层级 | Number | 10 | -- |