При добавлении в таблицу Mat Mat Table добавьте эффект Angular Material Ripple. - PullRequest
0 голосов
/ 06 сентября 2018

Я использую Angular Material v6. Я хочу добавить эффект Ripple каждый раз, когда щелкают строки в моем mat-table.

HTML:

<table mat-table [dataSource]="this.projectsList" class="mat-elevation-z8">

  <ng-container matColumnDef="id">
    <th mat-header-cell *matHeaderCellDef>ID</th>
    <td mat-cell *matCellDef="let project">{{project.id}}</td>
  </ng-container>

  <ng-container matColumnDef="title">
    <th mat-header-cell *matHeaderCellDef>Title</th>
    <td mat-cell *matCellDef="let project">{{project.title}}</td>
  </ng-container>

  <tr mat-header-row *matHeaderRowDef="this.displayColumns"></tr>
  <tr mat-row *matRowDef="let row; columns: this.displayColumns"></tr>

</table>

SCSS:

table {
  width: 90vw;
  margin-top: 1%;
  margin-left: auto;
  margin-right: auto;
}

.mat-row:hover {
  background: rgba(0, 0, 0, 0.04);
}

Импорт модулей:

AppRoutingModule,
BrowserModule,
BrowserAnimationsModule,
MatToolbarModule,
MatSidenavModule,
MatButtonModule,
MatCheckboxModule

Тема:

@import '~@angular/material/theming';
@import './palette.scss';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// **Be sure that you only ever include this mixin once!**
@include mat-core();

// Define the default theme (same as the example above).
$light-primary-blue:    mat-palette($primary-blue);
$light-accent-purple:   mat-palette($accent-purple);
$light-theme:           mat-light-theme($light-primary-blue, $light-accent-purple);

// Include the default theme styles.
@include angular-material-theme($light-theme);

// Define an alternate dark theme.
$dark-primary: mat-palette($primary-blue);
$dark-accent:  mat-palette($accent-purple);
$dark-theme:   mat-dark-theme($dark-primary, $dark-accent);

// Include the alternative theme styles inside of a block with a CSS class. You can make this
// CSS class whatever you want. In this example, any component inside of an element with
// `.dark` will be affected by this alternate dark theme instead of the default theme.
.dark {
  @include angular-material-theme($dark-theme);
}

Я не могу найти никакой документации по добавлению волнового эффекта в таблицу, но я видел пару экземпляров Stackblitz, которые имеют волновые эффекты при щелчке строк. Я пытался скопировать то, что они делали, но безуспешно.

Ответы [ 2 ]

0 голосов
/ 10 марта 2019

Измените ваш элемент td, как показано ниже.

<table mat-table [dataSource]="this.projectsList" class="mat-elevation-z8">

  <ng-container matColumnDef="title">
    <th mat-header-cell *matHeaderCellDef>Title</th>
    <td mat-cell *matCellDef="let project">
      <div class='mat-ripple-wrapper' matRipple>
        {{project.title}}
      </div> 
    </td>
  </ng-container>

</table>

Style

.mat-ripple-wrapper{
   position: relative;
}

Директива mat-ripple создает элемент div при нажатии на элемент триггера, что делает его неуместным, если он помещен в строку. Лучше всего заставить его работать, обернув данные td в div и добавив к нему директиву, содержащую динамически генерируемый div.

0 голосов
/ 06 сентября 2018

Вы можете попробовать этот код

 /deep/.mat-row:hover {
  background: rgba(0, 0, 0, 0.04);
 }

Для эффекта ряби попробуйте это

.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}
.ripple:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}
...