カテゴリー
CSS

sass 繰り返しで時差アニメーション

p{
  @for $cnt from 1 through 10{
    &:nth-of-type(#{$cnt}){
      opacity: 1;
      transition: all .5s #{$cnt * 0.07}s;
    }
  }
}