JSFiddle - React, Tailwind, and code Playground

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Text Animation</title>
  <style>
    .text-container {
      position: relative;
      overflow: hidden;
      width: 300px;
      height: 50px;
      border: 1px solid #ccc;
    }

    .text {
      white-space: nowrap;
      animation: slideText 5s linear infinite;
    }

    @keyframes slideText {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(100%);
      }
    }
  </style>
</head>
<body>
  <div class="text-container">
    <div class="text">Your Text Here</div>
  </div>
</body>
</html>