搜尋

首頁  >  問答  >  主體

前端 - 使用:after和animation制作的遮罩层出现的问题?

想做一个当网页打开时.d1有个淡出效果动画,但是d1始终是空白?

<p class="d1"></p>

    .d1{
        width: 20px;
        height: 20px;
        background-color: red;
        position: relative;
    }
    .d1:after{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 1;
        -webkit-animation: d1_mask 5s linear 0 forwards;
        animation: d1_mask 5s linear 0 forwards;
    }
    @keyframes d1_mask{
        0%{opacity: 1}
        100%{opacity: 0}
    }
PHP中文网PHP中文网2788 天前558

全部回覆(2)我來回復

  • PHP中文网

    PHP中文网2017-04-17 11:37:25

    animation: d1_mask 5s linear forwards;這樣,forward不要跟count同時使用

    回覆
    0
  • 怪我咯

    怪我咯2017-04-17 11:37:25

    @keyframes 也需要做相容性處理、加廠商前綴;注意看文件!

    回覆
    0
  • 取消回覆