css Sprytneoużycie:nth-​​child()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css Sprytneoużycie:nth-​​child()相关的知识,希望对你有一定的参考价值。

.wufoo-letter {
  animation: kaboom 5s ease alternate infinite;
  &:nth-child(2) {
    animation-delay: 0.1s;
  }
  &:nth-child(3) {
    animation-delay: 0.2s;
  }
  &:nth-child(4) {
    animation-delay: 0.3s;
  }
  &:nth-child(5) {
    animation-delay: 0.4s;
  }
}
@keyframes kaboom {
  90% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.1);
  }
}

以上是关于css Sprytneoużycie:nth-​​child()的主要内容,如果未能解决你的问题,请参考以下文章

CSS3 nth-child的使用,详解css中nth的作用,以及nth-child的兼容写法

css CSS nth child http://css-tricks.com/useful-nth-child-recipies/

css选择器中,为啥nth

CSS选择器之:nth-child()和:nth-of-type()的使用

CSS3中:nth-child和:nth-of-type的区别深入理解

CSS3 Nth-child设置动态左侧位置[重复]