私はこのアニメーションを作ったが、IEとEdgeを除くすべてのブラウザで魅力的なように機能している。あなたは、IEではここhttps://jsfiddle.net/03ddygdx/CSSのキーフレームアニメーションがIEとEdgeで意図したとおりに機能しない
.progress-container {
position: relative;
}
.background-progress-bar, .progress-bar {
width: 100%;
height: 10px;
top: 0px;
left: 0px;
position: absolute;
}
.background-progress-bar {
background-color: pink;
z-index: 8;
}
.progress-bar {
background-color: red;
z-index: 9;
}
.indeterminate {
animation: indeterminate 2.5s infinite linear;
}
@keyframes indeterminate {
0% {
width: 30%;
left: 0%;
}
25% {
width: 50%;
left: 50%;
}
50% {
width: 10%;
left: 0px;
}
75% {
width: 30%;
left: 0%;
}
100% {
width: 0%;
left: calc(100% - 5px);
}
}
<div class="progress-container">
<span class="background-progress-bar">
<span class="progress-bar indeterminate"></span>
</span>
</div>
ページを見ることができるとエッジは左に常にスパンを残して、左のプロパティを適用しません。私は、-ms-animationプロパティを試しましたが、それも動作しません。
私が私のindex.html
<meta http-equiv="X-UA-Compatible" content="IE=edge">