我正在使用基于 w3schools 的基本 CSS 加载指示器。它工作得很好,除非使用 IE 10,它会跳来跳去。 https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_loader
有谁知道 IE10 的解决方法?
.loader {
...
border-radius: 50%;
animation: spin 2s linear infinite;
...
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
