css - 中心加载动画

时间:2018-01-10 22:34:03

标签: css animation centering

我想在按钮中间添加旋转动画,如下所示:

.button {
  position: absolute;
  display: inline-block;
  border: 1px solid grey;
  padding: 20px;
}

.button::after {
    content: "";
    position: absolute;
    border: 8px solid #ddd;
    border-radius: 50%;
    border-top: 8px solid #008;
    border-bottom: 8px solid #008;
    width: 64px;
    height: 64px;
    animation: spin 2s linear infinite;  /* without the animation, everything is positioned perfectly */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

动画看起来像预期的那样,但元素不居中。当"动画"属性被删除,元素正确定位。如何将加载动画定位到按钮的中心?

https://jsfiddle.net/f9993ttm/

1 个答案:

答案 0 :(得分:0)

您的动画正在覆盖您的转换属性。

尝试更多类似的内容:

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg) }
    100% { transform: translate(-50%, -50%) rotate(360deg)  }
}