Angular 5 - 在鼠标输入时显示一个按钮,鼠标离开时隐藏一个按钮

时间:2017-11-18 19:59:16

标签: angular angular-material

当用户将鼠标悬停在列表项上时,我希望显示一个按钮。当用户离开列表项时,我希望按钮不显示。

我遇到了一个mouseenter事件和一个mouseleave。

html的

<mat-list-item (mouseenter)="enter($event)" (mouseleave)="leave($event)" class="chat-message-body" *ngIf="auth._id !== message.author._id" fxLayoutAlign=""
    dir="ltl">
    <div matLine>
        <b>{{message.author.profile.username}} </b>
        <span>{{message.created_at | date:'shortTime'}} </span>
    </div>
    <button mat-icon-button>
        <mat-icon aria-label="">keyboard_arrow_down</mat-icon>
    </button>
    <span matLine> {{message.body}} </span>
    <img matListAvatar class="img-box" src="http://via.placeholder.com/30x30" alt="...">
</mat-list-item>

.TS

enter(e) {
    console.log("enter");
}

leave(e) {
    console.log("leave");
}

除了声明这些功能外,我不知道如何定位此列表项目中的按钮以显示和隐藏它,具体取决于用户是否已输入列表项目块或左侧。

enter image description here

1 个答案:

答案 0 :(得分:10)

我为此创建了一个解决方案。

当用户“鼠标”mat-item-list块时,我将变量设置为true并在按钮中添加ng-if,这样当变量为true时,它会显示当用户从鼠标“鼠标移动”时item-list变量设置为false。假设您只有一个mat-item-list,这很好。

有多种方法我需要一个变量来存储索引值,当用户输入块时,我确定索引值集是否与我悬停时相同。如果是,将显示按钮。

<强> html的

<mat-list dense>
        <ng-template ngFor let-message [ngForOf]="conversation?.messages" let-i="index" let-odd="odd" [ngForTrackBy]="trackById">
            <mat-list-item (mouseenter)="enter(i)" (mouseleave)="leave(i)" class="chat-message-body" *ngIf="auth._id === message.author._id"
                fxLayoutAlign="" dir="rtl">
                <img matListAvatar class="img-box" src="http://via.placeholder.com/30x30" alt="...">
                <button mat-icon-button *ngIf="hoverIndex == i">
                    <mat-icon aria-label="">keyboard_arrow_down</mat-icon>
                </button>
                <div matLine>
                    <b>{{message.author.profile.username}} </b>
                    <span>{{message.created_at | date:'shortTime'}} </span>
                </div>
                <span matLine> {{message.body}} </span>
            </mat-list-item>
        </ng-template>
    </mat-list>

<强> .TS

enter(i) {
    this.hoverIndex = i;
}

leave(i) {
    this.hoverIndex = null;
}

此解决方案似乎比尝试查找特定的dom元素并添加display:block / none更清晰。