我正在尝试动画我的页面,但有以下问题:
我的页面上有内容div,以及在内容上方打开另一个div的按钮。我希望那个div能够褪色并滑入,并且下方也可以向下滑动。我为上面的div创建了我想要的动画,点击后打开,但不知道如何处理内容div,示例代码如下:
<div class="wrapper">
<button (click)="animated = !animated"></button>
<div *ngIf="animated" [@slideInOutAnimation] class="animated-div">
THIS DIV IS ANIMATED</div>
<div class="content">THIS IS CONTENT DIV</div>
</div>
TYPESCRIPT:
animations: [
trigger('slideInOutAnimation', [
state('*', style({
})),
transition(':enter', [
style({
transform: 'translateY(-10%)',
opacity: 0
}),
animate('.5s ease-in-out', style({
transform: 'translateY(0)',
opacity: 1
}))
]),
transition(':leave', [
animate('.5s ease-in-out', style({
transform: 'translateY(-10%)',
opacity: 0
}))
])
])
]
我应该创建一些其他触发器来移动我的内容div吗?
答案 0 :(得分:30)
首先,创建一个文件,您可以在其中定义动画并将其导出。只是为了让你的app.component.ts更清晰
在下面的示例中,我使用了从0px(当它被隐藏)到500px的div的最大高度,但是你可以根据需要改变它。
此动画使用状态(输入和输出),当我们点击按钮时将切换,这将运行动画。
<强> animations.ts 强>
import { trigger, state, style, transition,
animate, group, query, stagger, keyframes
} from '@angular/animations';
export const SlideInOutAnimation = [
trigger('slideInOut', [
state('in', style({
'max-height': '500px', 'opacity': '1', 'visibility': 'visible'
})),
state('out', style({
'max-height': '0px', 'opacity': '0', 'visibility': 'hidden'
})),
transition('in => out', [group([
animate('400ms ease-in-out', style({
'opacity': '0'
})),
animate('600ms ease-in-out', style({
'max-height': '0px'
})),
animate('700ms ease-in-out', style({
'visibility': 'hidden'
}))
]
)]),
transition('out => in', [group([
animate('1ms ease-in-out', style({
'visibility': 'visible'
})),
animate('600ms ease-in-out', style({
'max-height': '500px'
})),
animate('800ms ease-in-out', style({
'opacity': '1'
}))
]
)])
]),
]
然后在你的app.component中,我们导入动画并创建将切换动画状态的方法。
<强> app.component.ts 强>
import { SlideInOutAnimation } from './animations';
@Component({
...
animations: [SlideInOutAnimation]
})
export class AppComponent {
animationState = 'in';
...
toggleShowDiv(divName: string) {
if (divName === 'divA') {
console.log(this.animationState);
this.animationState = this.animationState === 'out' ? 'in' : 'out';
console.log(this.animationState);
}
}
}
以下是 app.component.html 的外观:
<div class="wrapper">
<button (click)="toggleShowDiv('divA')">TOGGLE DIV</button>
<div [@slideInOut]="animationState" style="height: 100px; background-color: red;">
THIS DIV IS ANIMATED</div>
<div class="content">THIS IS CONTENT DIV</div>
</div>
slideInOut 是指动画中定义的动画触发器.ts
这是我创建的StackBlitz示例:https://stackblitz.com/edit/angular-muvaqu
附注:如果发生错误并要求您添加 BrowserAnimationsModule ,只需将其导入app.module.ts:
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
imports: [ ..., BrowserAnimationsModule ],
...
})
答案 1 :(得分:13)
在处理高度过渡以允许动态高度内容时,我更喜欢通配符运算符。
// Bind to true/false states via 0 and 1 values
trigger('slideUpDown', [
state('0', style({ 'max-height': '*', opacity: 1 })),
state('1', style({ 'max-height': '0px', opacity: 0 })),
transition(':enter', animate('400ms ease-in-out')),
transition('* => *', animate('400ms ease-in-out')),
])
用法:
<div #someDiv [@slideUpDown]="someDiv.state"></div>
在其他地方或模板中,您可以切换状态。
<button (click)="someDiv.state = !someDiv.state"></button>
答案 2 :(得分:0)
这是一种以角度2以上的角度实现向下滑动动画的干净简便的方法
my-component.ts
import { animate, style, transition, trigger } from '@angular/animations';
@Component({
animations: [
trigger('slideDownUp', [
transition(':enter', [style({ height: 0 }), animate(500)]),
transition(':leave', [animate(500, style({ height: 0 }))]),
]),
],
})
my-component.html
<div @slideDownUp *ngIf="isShowing" class="box">
I am the content of the div!
</div>
my-component.scss
.box {
overflow: hidden;
}