1

我有 div,我希望使用 CSS 过渡属性在 3 秒的间隔内将其宽度从 0 增加到 100。当我在 Chrome 开发人员工具中更改此属性时,它会在 3 秒的持续时间内从 0 到 100 很好地增长。但是,如果我应用组件的样式ngOnInit(),它是即时的。难道我做错了什么?

编辑:我确实自己解决了这个问题,但是一个答案也解释了为什么它会很好。

组件.ts:

@Component({
    selector: 'notFound',
    templateUrl: 'app/notFound.component/notFound.component.html',
    directives: [ROUTER_DIRECTIVES]
})

export class NotFoundComponent {
    ngOnInit() {
        (<HTMLElement>document.querySelector('.determinate')).style.width = "100%";
    }
}

组件.html:

<div class="wrapper">
    <i class="material-icons error">error_outline</i>
    <div class="not-found-text"> No such page 'round here.</div>
    <a [routerLink]="['Menu']" class="waves-effect waves-light btn blue">
        <i class="material-icons">home</i>
        <!--home-->
    </a>
    <div class="progress">
        <div class="determinate"></div>
    </div>
</div>

<style>
    .progress {
        margin-top: 30px;
        background: white;
    }

    .determinate {
        width: 0%;
        background: #2196F3;
        transition: width 3s ease-in-out;
    }        
</style>
4

1 回答 1

2

我通过将呼叫包装在 0ms 中解决了它setTimeout。真是个惊喜。

ngOnInit() {
    setTimeout(function () {
        (<HTMLElement>document.querySelector('.determinate')).style.width = "100%";
    }, 0);
}
于 2016-08-29T20:36:49.033 回答