转换Firefox上的错误(动画)

时间:2019-03-05 10:52:25

标签: html css animation transform translate-animation

当我为元素添加动画时(仅在Firefox上),我在整个网站上都有一个奇怪的错误。有时元素会重复,但是当我打开检查器时它们会消失。 我的代码(我有自动前缀):

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@keyframes slideInUp {
  from {
    transform: translateY(70px);
    visibility: visible;
  }
  to {
    transform: translateY(0px);
  }
}

enter image description here

0 个答案:

没有答案