• [Angular2 Animation] Basic animation


    @Component({
      selector: 'app-courses',
      templateUrl: './courses.component.html',
      styleUrls: ['./courses.component.css'],
      animations: [
        trigger('courseHover', [
          state('inactive', style({
            backgroundColor: '#eee',
            transform: 'scale(1)'
          })),
          state('active',   style({
            backgroundColor: '#cfd8dc',
            transform: 'scale(1.1)'
          })),
          transition('inactive => active', animate('300ms ease-in')),
          transition('active => inactive', animate('300ms ease-out'))
        ])
      ]
    })

    Animation start in 'trigger' function. Give a name call 'courseHover'.

    Animation also define 'state', and using 'transition' to animte the state.

    <table>
      <tr *ngFor="let course of (allCourses | async)" [@courseHover]="course.hover" (mouseenter)="course.hover='active'"
          (mouseleave)="course.hover='inactive'">
        <td class="column course-icon">
          <img [src]="course?.iconUrl">
        </td>
        <td class="column course-description">
          {{course.description}}
        </td>
        <td>
          <button [routerLink]="course.url">View</button>
        </td>
      </tr>
    </table>

    So when mouse enter and mouse leave we set 'course.hover' to 'active' or 'inactive'.

    [@courseHover]="course.hover"

    Apply 'courseHover' animation acoording to the 'course.hover'.

    Github

  • 相关阅读:
    检查点(Checkpoint)过程如何处理未提交的事务
    SQL Server代理(4/12):配置数据库邮件
    SQL Server代理(3/12):代理警报和操作员
    hash_multimap
    hash_map
    hash_multiset
    hash_set
    hash 函数
    pair
    multimap
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5971924.html
Copyright © 2020-2023  润新知