gpt4 book ai didi

javascript - 使 Material 选项卡可滚动

转载 作者:行者123 更新时间:2023-12-01 16:00:12 32 4
gpt4 key购买 nike

我在我的应用程序中使用了 Material 选项卡(mat-tabmat-tab-group 中)
当标签页数超出显示范围时,会显示两个导航按钮以显示其他标签页:

enter image description here

我的要求是使用户能够在标签栏上滚动,以便显示其他标签。

我试图做一些CSS更改,但无法解决。如果可以提供任何解决方案或建议,我们将不胜感激。

最佳答案

[长文本解决方案] 我的目标是默认使 mat-tabs 可滚动,没有控件,但能够在单击部分可见的 mat-tab 以将其移动到可见的中心视口(viewport)时自动滚动。

1) 此行为已在此示例中“从盒子中”部分实现 - https://stackblitz.com/edit/angular-mat-tabs-scrollalble-initial-behavior .
问题是你不能正常向后滚动——有一些错误的行为将标签推到左边。所以它不像我想要的那样工作。

2) 下一个变体是滚动事件 - 采用 (wheel)="event"在 mat-tab-group - 但它也不适用于移动设备。 https://stackblitz.com/edit/angular-mat-tabs-scrollable-by-wheel-event从这里得到它awesome comment above .

3) 我自己的 mat-tabs 滚动在移动设备上滚动并在您单击选项卡时将单击的选项卡自动滚动到屏幕视口(viewport)的中心不是太简单,但它可以工作! :)

首先,您需要在点击选项卡和分页按钮时禁用“从框内”滚动:

mat-tabs-override.scss:

$black: #121212;
@mixin media-query-for-mobile {
@media (max-width: 768px) and (min-width: 1px) {
@content;
}
}
mat-tab-group {
.mat-tab-header {
.mat-tab-header-pagination {
display: none !important; // <== disable pagination
}
.mat-tab-label-container {
left: 0px; // if you need to use it on mobile - set left position to 0
width: 100%;
.mat-tab-list {
overflow-x: auto !important; // <== set horisontal scroll bar imperatively
// below rule prevents sliding of buttons' container - because it not sliding properly - to left it not slide as well
transform: none !important;
.mat-tab-labels {
// some tweaks for tabs - up to you
@include media-query-for-mobile {
justify-content: unset !important;
}
.mat-tab-label {
// min-width: 20% !important;
padding: 1.25% !important;
margin: 0px !important;
text-transform: uppercase;
color: $black;
font-weight: 600;
min-width: 140px !important;
}
}
}
}
}
}

在这种情况下,您将看到所有选项卡的宽度都相似并且在移动设备上可滚动。

接下来,您需要在单击选项卡时自动滚动选项卡,并根据当前视口(viewport)将它们的位置更改为屏幕中心——让我们开始吧!

我们可以创建一个指令,它会监听 <mat-tabs-group> 的主容器, 检查可滚动容器的宽度 .mat-tab-labels并通过自动滚动 .mat-tabs-labels 将选项卡移动到视口(viewport)中可见容器到需要的方式:

模板中的指令:
<mat-tab-group scrollToCenter>
<mat-tab label="tab 1"></mat-tab>
<mat-tab label="tab 2"></mat-tab>
<mat-tab label="tab 3"></mat-tab>
<mat-tab label="tab 4"></mat-tab>
<mat-tab label="tab 5"></mat-tab>
<mat-tab label="tab 6"></mat-tab>
<mat-tab label="tab 7"></mat-tab>
<mat-tab label="tab 8"></mat-tab>
</mat-tab-group>

指令.ts:
import { Directive, ElementRef, OnDestroy } from '@angular/core';
import { fromEvent, Subscription } from 'rxjs';

interface DOMRectI {
bottom: number;
height: number;
left: number; // position start of element
right: number; // position end of element
top: number;
width: number; // width of element
x?: number;
y?: number;
}

@Directive({
// tslint:disable-next-line:directive-selector
selector: '[scrollToCenter]',
})
export class MatTabScrollToCenterDirective implements OnDestroy {
isMobile: boolean;
subs = new Subscription();
constructor(
private element: ElementRef
) {
this.subs.add(
fromEvent(this.element.nativeElement, 'click').subscribe((clickedContainer: MouseEvent) => {
const scrollContainer = this.element.nativeElement.querySelector('.mat-tab-list');
const currentScrolledContainerPosition: number = scrollContainer.scrollLeft;

const newPositionScrollTo = this.calcScrollToCenterValue(clickedContainer, currentScrolledContainerPosition);
})
);
}

/** calculate scroll position to center of viewport */
calcScrollToCenterValue(clickedContainer, currentScrolledContainerPosition): number {
const scrolledButton: DOMRectI = (clickedContainer.target as HTMLElement).getBoundingClientRect();
const leftXOffset = (window.innerWidth - scrolledButton.width) / 2;
const currentVisibleViewportLeft = scrolledButton.left;
const neededLeftOffset = currentVisibleViewportLeft - leftXOffset;
console.log(scrolledButton);
const newValueToSCroll = currentScrolledContainerPosition + neededLeftOffset;
return newValueToSCroll;
}

ngOnDestroy() {
this.subs.unsubscribe();
}
}



它有效! :0 但不在 ios 和 IE 中...
为什么?因为 ios 和 IE 不支持 Element.scroll()

解决方案 - npm i element-scroll-polyfill并设置为 polyfills.ts
/** enable polufill for element.scroll() on IE and ios */
import 'element-scroll-polyfill';

伟大的!但是现在滚动不是那么流畅...... IE和ios不支持smooth-scroll-behavior。

解决方案 - npm i smoothscroll-polyfill并添加到 polyfills.ts
import smoothscroll from 'smoothscroll-polyfill';
// enable polyfill
smoothscroll.polyfill();

最后它无处不在。
希望它可以帮助某人修复 mat-tabs 自动滚动空虚:)

DEMO 好好享受 :)

关于javascript - 使 Material 选项卡可滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51544452/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com