Loader with mix blend

by Saksham Malhotra

HTML

<div class="textContainer">
  <div class="text">
    LOADING
  </div>
</div>

CSS

.textContainer {
  font-size: 40px;
  position: relative;
  background-color: white;
  color: #000;
  display: inline-block;
  font-family: Arial;
  letter-spacing: 10px;
}

.textContainer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0px;
  background-color: #000;
  animation: animate 2s linear infinite;
}

.text {
  color: #fff;
  mix-blend-mode: difference;
}

@keyframes animate {
  0% {
    width: 0px;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0px;
  }
}