CSS3 边框动画幽灵

CSS3 border animation ghost

我有这个小边框动画但是左上角有一个鬼影,一个黑点,我不知道怎么去掉它...你可以在这里查看:http://codepen.io/xaeoc/pen/xGRgze

    body {  
    background-color: #333;
    height: 230px;
    }

    .lluv {
    width: 230px;
    height: 230px;
    border: solid red 1px;
    position: absolute;
    left: calc(50% - 115px);
    }

    .ondas1 {
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    position: absolute;
    animation: ondas1 1s ease-out;
    }

    @keyframes ondas1 {
    0% {
    width: 0px;
    height: 0px;
    top: calc(50% - 0px);
    left: calc(50% - 0px);
    border-color: rgba(255, 255, 255, .7);
    }
    100% {
    width: 200px;
    height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    border-color: rgba(255, 255, 255, 0);
    }
    }

这是由于 ondas1 中的边界。这应该可以解决您的问题。

Sample

CSS

body {
  background-color: #333;
  height: 230px;
}

.lluv {
  width: 230px;
  height: 230px;
  border: solid red 1px;
  position: relative;
  overflow: hidden;
  left: calc(50% - 115px);
}

.ondas1 {
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  left:-10px;  
  position: absolute;
  animation: ondas1 1s ease-out;
}

@keyframes ondas1 {
  0% {
    width: 0px;
    height: 0px;
    top: calc(50% - 0px);
    left: calc(50% - 0px);
    border-color: rgba(255, 255, 255, .7);
  }
  100% {
    width: 200px;
    height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    border-color: rgba(255, 255, 255, 0);
  }
}

使用forwards应该是animation: ondas1 1s ease-out forwards;

演示 - http://codepen.io/victorfdes/pen/EjNWNY

关于animation-fill-mode

的更多解释

动画完成后,它会进入默认状态,其中 border 3px 这就是您在使用 forwards 后在左上角看到圆形元素的原因,动画不会进入默认状态相反,它会转到 keyframe

中的最后一个状态