美文网首页
2020-05-18作业

2020-05-18作业

作者: 用技术改变世界 | 来源:发表于2020-05-18 17:53 被阅读0次

了解angular以下几个核心模块

 OnInit,Input, ViewEncapsulation, ChangeDetectorRef, ElementRef, Directive,NgZone, SimpleChanges,OnChanges,ViewChild, ChangeDetectionStrategy

样式分享-闪烁单元格,行情

.normal-flash {

    background: #00b5ef !important;

    animation-name: flash;

    animation-duration: 2s;

    animation-timing-function: linear;

    animation-iteration-count: infinite;

}

.fall-flash {

    background: green !important;

    animation-name: flash;

    animation-duration: 2s;

    animation-timing-function: linear;

    animation-iteration-count: infinite;

}

.raise-flash {

    background: red !important;

    animation-name: flash;

    animation-duration: 2s;

    animation-timing-function: linear;

    animation-iteration-count: infinite;

}

@keyframes flash {

    50% {

        background: rgba(255, 255, 255, 0);

    }

}

相关文章

网友评论

      本文标题:2020-05-18作业

      本文链接:https://www.haomeiwen.com/subject/dkrpohtx.html