首頁  >  問答  >  主體

javascript - 為什麼我的animation-fill-mode 設定不生效

.gold_egg_broken{

background: url("../img/animation/goldeggBroke.png");
width: 400px;
height: 400px;
animation: eggbroken 3s;
-webkit-animation-fill-mode:forwards;
-webkit-animation-timing-function: steps(80);

}

@-webkit-keyframes eggbroken {

0%{
    background-position: 0 0;
}
90%{
    background-position: 0 -32000px;
}
100%{
    background-position: 0 -32000px;
}

}

動態切換給一個元素這個樣式 想讓它停留在最後一格保持不動。但不生效

女神的闺蜜爱上我女神的闺蜜爱上我2687 天前1022

全部回覆(2)我來回復

  • 阿神

    阿神2017-07-05 10:41:25

    webkit前綴去掉,修改如下:

    .gold_egg_broken{
        background: url("../img/animation/goldeggBroke.png");
        width: 400px;
        height: 400px;
        animation: eggbroken 3s;
        animation-fill-mode:forwards;
        animation-timing-function: steps(80);
    }

    既然animation屬性起作用了,那麼也就是說在該瀏覽器中相關屬性不需要前綴了。 animation是一個綜合屬性,預設的animation-fill-modenone,使用帶有前綴的屬性webkit-animation-fill-mode不能覆蓋掉animation-fillmode前綴去掉。

    回覆
    0
  • PHP中文网

    PHP中文网2017-07-05 10:41:25

    謝邀,
    @luckness 已經說的很明白。
    另外就是 webkit 這類前綴是為了相容於不同瀏覽器的不同版本的,
    保守一點的寫法可以是:

    p{
         -webkit-animation-fill-mode: forwards;
            -moz-animation-fill-mode: forwards;
             -ms-animation-fill-mode: forwards;
              -o-animation-fill-mode: forwards;
                 animation-fill-mode: forwards;
    }

    回覆
    0
  • 取消回覆