fix(Sticky): should not detect scroll when hidden

This commit is contained in:
chenjiahan 2020-03-11 17:30:06 +08:00
parent 7af2c99b4a
commit 41e5c035dc

View File

@ -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;