我们应该为animate.css添加-moz-或其他供应商前缀吗?

时间:2015-08-17 08:29:51

标签: css3 animation

http://daneden.github.io/animate.css的animate.css中除了-webkit之外它不使用其他供应商前缀 - 我们应该添加自己吗? 为什么它没有使用其他前缀?

.animated {
  -webkit-animation-duration: 1s;
   animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

1 个答案:

答案 0 :(得分:0)

        .animated {
              -webkit-animation-duration: 1s;
              -moz-animation-duration: 1s;
               animation-duration: 1s;
              -webkit-animation-fill-mode: both;
             -moz-animation-fill-mode: both;
              animation-fill-mode: both;
            }

            .animated.infinite {
              -webkit-animation-iteration-count: infinite;
            -moz-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
            }