Image Reveal Animation

Why isn’t my text showing as it ought?

You have a typo in your keyframes:

@keyframes reveal {
  0% {
    transform: scaleX(0);
  }
  
  100% {
    transform: sclaeX(1);
  }
}
1 Like

Thank you! Totally missed that.