A collection of card game resources for beginners
https://www.reactivepoker.com/
- Poker Rules
- Jacks or Better
- Card Counting
To create the staggered effect, I used SCSS to generate a set of classes to delay individual cards at different speeds.
@for $i from 1 through 4 {
.delay-#{$i} {
-webkit-animation-delay: $i * 100ms !important;
animation-delay: $i * 100ms !important;
}
}
- React - A JavaScript library for building user interfaces
Jorge Donoso