mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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 { createNamespace, isDef } from '../utils';
|
||||||
import { BindEventMixin } from '../mixins/bind-event';
|
|
||||||
import { getScrollTop, getElementTop, getScroller } from '../utils/dom/scroll';
|
import { getScrollTop, getElementTop, getScroller } from '../utils/dom/scroll';
|
||||||
|
import { BindEventMixin } from '../mixins/bind-event';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('sticky');
|
const [createComponent, bem] = createNamespace('sticky');
|
||||||
|
|
||||||
@ -59,6 +60,10 @@ export default createComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onScroll() {
|
onScroll() {
|
||||||
|
if (isHidden(this.$el)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.height = this.$el.offsetHeight;
|
this.height = this.$el.offsetHeight;
|
||||||
|
|
||||||
const { container } = this;
|
const { container } = this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user