角度4+动画图标

Leo*_*zen 11 material-design angular-material2 angular

有没有人知道如何在Angular WebApplication中使用/启用动画图标,这些图标显示在材料设计文档中:https://material.io/design/iconography/animated-icons.html#usage

the*_*n24 15

正如其他人所说,必须构建 Material Icon 站点上的示例。

但是,我找到了解决这个问题的方法,以寻找有关如何为角度材质图标设置动画的指南,而对于其他寻找相同问题的指南,我有一个解决方案。默认动画可以自定义为 360 度旋转以外的其他内容。

基本上,您可以创建一个组件,该组件在单击时或单击按钮等父元素时在mat-icon之间交换。

先决条件是您有一个安装了材料图标的角度材料应用程序。我使用了Angular Material 8

这是一个有效的 Stackblitz https://stackblitz.com/edit/angular-material-prototype-animated-icon

mat-animated-icon.component.ts

import { Component, Input, OnInit } from '@angular/core';

@Component({
  selector: 'mat-animated-icon',
  templateUrl: './mat-animated-icon.component.html',
  styleUrls: ['./mat-animated-icon.component.scss']
})
export class MatAnimatedIconComponent implements OnInit {

  @Input() start: String;
  @Input() end: String;
  @Input() colorStart: String;
  @Input() colorEnd: String;
  @Input() animate: boolean;
  @Input() animateFromParent?: boolean = false;

  constructor() { }

  ngOnInit() {
    console.log(this.colorStart);
    console.log(this.colorEnd);
  }

  toggle() {
    if(!this.animateFromParent) this.animate = !this.animate;
  }

}
Run Code Online (Sandbox Code Playgroud)

mat-animated-icon.component.scss

:host {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';

  /* Rules for sizing the icon. */
  &.md-18 { font-size: 18px; }
  &.md-24 { font-size: 24px; }
  &.md-36 { font-size: 36px; }
  &.md-48 { font-size: 48px; }

  /* Rules for using icons as black on a light background. */
  &.md-dark { 
    color: rgba(0, 0, 0, 0.54);

    &.md-inactive { color: rgba(0, 0, 0, 0.26); }
  }

  /* Rules for using icons as white on a dark background. */
  &.md-light { 
    color: rgba(255, 255, 255, 1);

    &.md-inactive { color: rgba(255, 255, 255, 0.3); }
  }

  .material-icons {
    transition: transform .5s;
    &.animate {
      transform: rotate(360deg);
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

mat-animated-icon.component.html

<mat-icon [ngClass]="{'animate' : animate}" color="{{animate ? colorEnd : colorStart}}" (click)="toggle()">{{animate ? end : start}}</mat-icon>
Run Code Online (Sandbox Code Playgroud)

var.directive.ts

一个小助手指令

import { Directive, Input } from '@angular/core';

@Directive({
  selector: '[var]',
  exportAs: 'var'
})
export class VarDirective {

  @Input() var:any;

  constructor() { }

}
Run Code Online (Sandbox Code Playgroud)

使用中的组件示例

<button (click)="!this.disabled && iconAnimate10.var=!iconAnimate10.var" #iconAnimate10="var" var="'false'" mat-icon-button [disabled]="false" aria-label="Example icon-button with a heart icon">
<mat-animated-icon start="menu" end="close" colorStart="none" colorEnd="none" [animate]="iconAnimate10.var" animateFromParent="true"></mat-animated-icon>
Run Code Online (Sandbox Code Playgroud)

  • 你能帮忙修复你的 stackblitz 中的错误吗?我想从中学习,但我无法让它运行!启动服务器时,我不断收到“错误:ENOENT:没有这样的文件或目录。,'/dev/null'” (2认同)

Rem*_*emy 7

有一个易于动画角度的库。 https://github.com/filipows/angular-animations

我只是在 angular 8 上使用它来为最喜欢的图标设置动画,这非常简单。

这个例子使满星变成空星,反之亦然。

成分:

import { fadeInOnEnterAnimation, fadeOutOnLeaveAnimation } from 'angular-animations';
@Component({animations: [
    fadeInOnEnterAnimation(),
    fadeOutOnLeaveAnimation()
]})

public toggleFavorite() {
    this.isFavorite = !this.isFavorite;
}
Run Code Online (Sandbox Code Playgroud)

html:

 <div style="display: grid;" id="favoriteContainer" (click)=toggleFavorite() matTooltip="Favorite" >
              <mat-icon style="grid-column: 1;grid-row: 1;" *ngIf="!isFavorite" [@fadeInOnEnter] [@fadeOutOnLeave]>star_border</mat-icon>
              <mat-icon style="grid-column: 1;grid-row: 1;" *ngIf="isFavorite" [@fadeInOnEnter] [@fadeOutOnLeave]>star</mat-icon>
          </div>
Run Code Online (Sandbox Code Playgroud)


mal*_*awi 0

Material.io 是如何进行材料设计的规范和指南,角度材料组件是基于这种规范构建的,但不显示有关动画谷歌材料图标的任何信息。

  • 这就是问题所在,没有清晰的指南或帮助工具来制作图标动画 (3认同)