Comments on 8byte All Comments Start of Thread Parent

It's custom CSS I wrote for myself! And for the character, it's an animation CSS on infinite loop.

This user is not visible to guests.

It's a small snippet so I don't have it posted anywhere! It's a very simple keyframes animation.

This user is not visible to guests.
@keyframes upAndDown {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}
This user is not visible to guests.
1 Replies