Answers for "how to make sliding text in cs"

CSS
4

text sliding css

.slide-right {
  width: 100%;
  overflow: hidden;
  margin-left: 400px;
  max-width: 500px
}

.slide-right h2 {
  animation: 2s slide-right;
  animation-delay: 2s;
}

@keyframes slide-right {
  from {
    margin-left: -500px;
  }

  to {
    margin-left: 0%;
  }
}
Posted by: Guest on December-12-2020
-2

sliding text css

<div class="slide-">
  <h2>Text that will slide in from the left</h2>
</div>
Posted by: Guest on February-04-2021

Browse Popular Code Answers by Language