为什么动画内容在Firefox中不起作用?

时间:2016-07-05 00:45:54

标签: css3 firefox css-animations keyframe

为什么以下动画在Chrome中有效但在Firefox中无效?

HTML:

<button>Loading</button>

CSS:

button {
  width: 70px;
  text-align: left;
}

button:after {
  content: '';
  animation: dots 1s infinite;
}

@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

Playground

1 个答案:

答案 0 :(得分:3)

因为规范不允许content to be animated