【问题标题】:Animate div without its pseudo-elements没有伪元素的 div 动画
【发布时间】:2019-02-15 07:25:51
【问题描述】:

我正在尝试使用单个 html 元素创建自定义加载微调器,

<div class="loader"></div>

它应该看起来像 3 条放大图,我正在向元素以及之前和之后的伪元素添加动画。我的问题是,当我将动画添加到实际 div 时,动画也会传递给伪元素,并且缩放比例是它们的两倍。

.loader {
  width: 10px;
  height: 50px;
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: tomato;
  animation: grow 1s ease-in-out 0.33s infinite;
  &::after,
  &::before {
    content: "";
    width: inherit;
    height: inherit;
    background-color: inherit;
    position: inherit;
  }
  &::before {
    top: 0px;
    left: -15px;
    animation: grow 1s ease-in-out infinite;
  }
  &::after {
    top: 0px;
    left: 15px;
    animation: grow 1s ease-in-out 0.66s infinite;
  }
}

@keyframes grow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

有没有办法防止动画继承到伪元素?

【问题讨论】:

    标签: css css-selectors css-animations pseudo-element


    【解决方案1】:

    所以最后我发现缩放动画是向下继承的错误。我尝试在没有缩放功能的情况下重写动画,并想出了具有类似结果的东西。

    @keyframes grow {
      0%,
      100% {
        height: 3em;
        width: 0.75em;
        box-shadow: 0 0;
      }
      50% {
        height: 4em;
        width: 0.8em;
        box-shadow: 0 -1em;
      }
    }
    

    我知道它没有完全相同的效果,但对我来说已经足够了。希望它可以帮助某人。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-04-27
      • 2019-11-05
      • 1970-01-01
      • 1970-01-01
      • 2019-01-30
      • 1970-01-01
      • 1970-01-01
      • 2013-10-09
      相关资源
      最近更新 更多