【发布时间】:2019-02-05 12:25:04
【问题描述】:
我正在尝试将动画微调器添加到我的 Angular 应用程序中
我找到了这个微调器:
https://codepen.io/z-/pen/OPzNLz
spinner.component.html
import {
Component,
OnInit
} from '@angular/core';
@Component({
selector: 'app-spinner',
templateUrl: './spinner.component.html',
styleUrls: ['./spinner.component.css'],
animations: []
})
export class SpinnerComponent implements OnInit {
constructor() {}
ngOnInit() {}
}
/*Negative delay values skip rather than pause.*/
.test {
background: yellow;
}
.row1 .left,
.row1 .right {
animation-delay: -0s;
/*Obviously not needed*/
}
.row2 .left,
.row2 .right {
animation-delay: -0.5s;
}
.row3 .left,
.row3 .right {
animation-delay: -1s;
}
.row4 .left,
.row4 .right {
animation-delay: -1.5s;
}
/**/
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 84px;
}
.left,
.right {
height: 6px;
width: 90px;
background-color: #000;
border-radius: 10px;
position: absolute;
}
.left {
left: 0px;
animation: left 2s infinite;
}
.right {
right: 0px;
animation: right 2s infinite;
}
.row1,
.row2,
.row3,
.row4 {
position: relative;
}
.row1 {
top: 0px;
}
.row2 {
top: 26px;
}
.row3 {
top: 52px;
}
.row4 {
top: 78px;
}
@keyframes left {
0%,
50%,
100% {
width: 90px;
}
25% {
width: 170px;
}
75% {
width: 10px;
}
}
@keyframes right {
0%,
50%,
100% {
width: 90px;
}
25% {
width: 10px;
}
75% {
width: 170px;
}
}
<div class="test">Spinner</div>
<div class="loader">
<div class="row1">
<div class="left"></div>
<div class="right"></div>
</div>
<div class="row2">
<div class="left"></div>
<div class="right"></div>
</div>
<div class="row3">
<div class="left"></div>
<div class="right"></div>
</div>
<div class="row4">
<div class="left"></div>
<div class="right"></div>
</div>
</div>
我将 HTML 和 CSS 文件复制到纯 html 和 css 中,然后微调器出现了。
然后我想为什么不将它用作 angular 中的组件
所以我将代码复制到一个组件中,但微调器似乎不起作用 它只是不显示 - 没有错误。
我什至检查 BrowserAnimationsModule 是否已导入 app.module.ts 但它的剂量似乎发生了变化。
【问题讨论】:
-
因为我在我的应用程序的多个位置使用它,同时从后端获取数据
-
我如何在 Angular 中使用它?假设我在外部文件中有这个,我如何在组件中显示 html?
标签: html css angular animation