0.1.3 • Published 4 years ago
bo-sticky v0.1.3
BoSticky
- 一个用于粘性定位的组件,可设置定位方向,背景色,同时提供 定位回调钩子
html
<template>
<div>
<bo-sticky @scrollFixed="scrollFixed"> 这一个粘性定位组价 </bo-sticky>
</div>
</template>
props:{
zIndex:{
type:[String,Number],
default:90
},
offsetTop:{
type:[String,Number],
default:0
},
backColor: {
type: String,
default: ''
},
direction: {
type: String,
default: 'top'
},
fixStyle: {
type: Object,
default: () => ({})
}
}
BoSticky Events
事件名 | 说明 | 回调参数 |
---|---|---|
scrollFixed | 页面滚动时触发 | isFixed boolean |