News ticker code

<style>

  .news-scroll {

    position: fixed;

    white-space: nowrap;

    animation: scroll-left 900s linear forwards;

    top: 90%;

    right: -100%; 

    font-size: 1rem;

    color: white;

    background-color: red;

    padding: 0 10px;

    z-index: 9999;

  }


  @keyframes scroll-left {

    0% {

      transform: translateX(0);

    }

    100% {

      transform: translateX(-200vw); /* ensure it scrolls fully offscreen */

    }

  }

</style>


<div class="news-scroll">PUT THE TEXT YOU WANT HERE

</div>


0 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )