Hello! How to use Sass to create a more elegant solution for successively increasing the transition-delay the child elements?
Here, in order, as in the ZOE example, social network icons were consistently displayed. An example is the Zoe point .
.myClass { &:nth-child(1) { transition: all 1s ease-out 0.5s; } &:nth-child(2) { transition: all 1s ease-out 0.7s; } &:nth-child(3) { transition: all 1s ease-out 0.9s; } &:nth-child(4) { transition: all 1s ease-out 1.1s; } &:nth-child(5) { transition: all 1s ease-out 1.3s; } }