mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Sticky): should not detect scroll when hidden
This commit is contained in:
parent
7af2c99b4a
commit
41e5c035dc
@ -1,6 +1,7 @@
|
||||
import { isHidden } from '../utils/dom/style';
|
||||
import { createNamespace, isDef } from '../utils';
|
||||
import { BindEventMixin } from '../mixins/bind-event';
|
||||
import { getScrollTop, getElementTop, getScroller } from '../utils/dom/scroll';
|
||||
import { BindEventMixin } from '../mixins/bind-event';
|
||||
|
||||
const [createComponent, bem] = createNamespace('sticky');
|
||||
|
||||
@ -59,6 +60,10 @@ export default createComponent({
|
||||
|
||||
methods: {
|
||||
onScroll() {
|
||||
if (isHidden(this.$el)) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.height = this.$el.offsetHeight;
|
||||
|
||||
const { container } = this;
|
||||
|
Loading…
x
Reference in New Issue
Block a user