作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 transform
Angular 5 动画的属性,但它不起作用,我不知道为什么。我试过把关键帧放在里面,它也不起作用。只是不透明度起作用。
这是动画代码:
import { trigger, state, animate, transition, style, query, animateChild,
stagger,keyframes } from '@angular/animations';
export const SlideOutAnimation =
trigger('SlideOutAnimation', [
// route 'enter' transition
transition('* => *', [
query(':enter',
style({ opacity: 0, transform: "translateX(50px)" }),
{ optional: true }
),
query(':enter', stagger(200, [
style({ opacity: 0 ,transform: "translateX(50px)" }),
animate('.8s ease-in-out', style({ opacity:1, transform: "translateX(0px)" }) )
]), { optional: true }),
query(':leave',
style({ opacity: 1 }),
{ optional: true }
),
query(':leave', [
style({ opacity: 1 }),
animate('1s ease-in-out', style({ opacity: 0 }))],
{ optional: true }
)
])
])
<div class="noticia-mae" [@SlideOutAnimation]= "listaNoticias.length" >
<a *ngFor="let noticia of listaNoticias" routerLink="/noticia/{{noticia.id}}">
<div class="card text-center noticia">
<div class="card-body">
<h5 class="card-title">{{noticia.titulo}}</h5>
<p class="card-text">{{noticia.resumo}}</p>
</div>
<div class="card-footer text-muted">
2 days ago
</div>
</div>
最佳答案
你的动画是正确的。
试着把*ngFor
在 <div>
(而不是 <a>
标签)如下:
<div class="noticia-mae" [@SlideOutAnimation]= "listaNoticias.length" >
<div *ngFor="let noticia of listaNoticias" class="card text-center noticia">
<div class="card-body">
<h5 class="card-title">{{noticia.titulo}}</h5>
<p class="card-text">{{noticia.resumo}}</p>
</div>
<div class="card-footer text-muted">
2 days ago
</div>
</div>
关于angular - 转换不适用于 angular5 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49448759/
我是一名优秀的程序员,十分优秀!