Eu tenho uma lista, com overflow-x
oe overflow-y
definido como auto
. Além disso, configurei a rolagem de momento, para que a rolagem por toque funcione bem no celular, usando webkit-overflow-scrolling: true
.
O problema, no entanto, é que não consigo descobrir como desativar a rolagem horizontal ao rolar verticalmente. Isso leva a uma péssima experiência do usuário, pois o deslizar para o canto superior esquerdo ou o canto superior direito fará com que a tabela role na diagonal. Quando o usuário está rolando verticalmente, NÃO quero absolutamente nenhuma rolagem horizontal até que o usuário pare de rolar verticalmente.
Eu tentei o seguinte:
JS:
offsetX: number;
offsetY: number;
isScrollingHorizontally = false;
isScrollingVertically = false;
//Detect the scrolling events
ngOnInit() {
this.scrollListener = this.renderer.listen(
this.taskRows.nativeElement,
'scroll',
evt => {
this.didScroll();
}
);
fromEvent(this.taskRows.nativeElement, 'scroll')
.pipe(
debounceTime(100),
takeUntil(this.destroy$)
)
.subscribe(() => {
this.endScroll();
});
}
didScroll() {
if ((this.taskRows.nativeElement.scrollLeft != this.offsetX) && (!this.isScrollingHorizontally)){
console.log("Scrolling horizontally")
this.isScrollingHorizontally = true;
this.isScrollingVertically = false;
this.changeDetectorRef.markForCheck();
}else if ((this.taskRows.nativeElement.scrollTop != this.offsetY) && (!this.isScrollingVertically)) {
console.log("Scrolling Vertically")
this.isScrollingHorizontally = false;
this.isScrollingVertically = true;
this.changeDetectorRef.markForCheck();
}
}
endScroll() {
console.log("Ended scroll")
this.isScrollingVertically = false;
this.isScrollingHorizontally = false;
this.changeDetectorRef.markForCheck();
}
HTML:
<div
class="cu-dashboard-table__scroll"
[class.cu-dashboard-table__scroll_disable-x]="isScrollingVertically"
[class.cu-dashboard-table__scroll_disable-y]="isScrollingHorizontally"
>
CSS:
&__scroll {
display: flex;
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: auto;
will-change: transform;
-webkit-overflow-scrolling: touch;
&_disable-x {
overflow-x: hidden;
}
&_disable-y {
overflow-y: hidden;
}
}
Mas a cada vez que eu jogo overflow-x
ou overflow-y
para hidden
quando o seu foi rolado, rolando vai pulso aleatório e saltar de volta ao topo. Também notei que webkit-overflow-scrolling: true
é a razão pela qual isso ocorre. Quando removo, o comportamento parece parar, mas eu absolutamente preciso disso para a rolagem de momento em dispositivos móveis.
Como desabilito a rolagem horizontal ao rolar verticalmente?