我在應用程序中創建了一個簡單的加載網格,並在其上添加了一個動畫。這個動畫似乎適用於除IE11以外的所有瀏覽器。CSS無限動畫無法在IE11中工作
有人可以幫我理解爲什麼它不工作,如何讓它在IE11中工作?
.loading {
background-color: #ededed;
height: 12px;
width: 500px;
overflow: hidden;
}
.animation {
animation: loading 1.2s linear;
animation-iteration-count: infinite;
background-color: #e0e0e0;
height: 100%;
left: 0;
position: relative;
top: auto;
width: 300px;
}
@keyframes loading {
from {left: -30rem}
to {left: calc(100% + 30rem)}
}
<div class="loading">
<div class="animation"></div>
</div>
的jsfiddle如果你有興趣:https://jsfiddle.net/9shufwsL/
可能重複https://stackoverflow.com/questions/34809544/css3-animation-is-not-working-in-ie11-but-works-in - 其他瀏覽器 – PraveenKumar
嘗試這個'動畫:加載1.2s無限;' –
@PraveenKumar沒有那麼多,因爲我的問題沒有回答任何問題的答案 –