JSFiddle - React, Tailwind, and code Playground

by Anisuzzaman Khan

HTML

<div class="message">
    <span class="message1"> This is some long message that i need to put </span>
</div>

CSS

.content1 {
    width: 1280px;
    height: 322px;
}
.message {
    width: 1240px;
    height: 94px;
    background-color:#5292a5;
    margin: 25px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.message1 {
    width: 1240px;
    height: 94px;
    font-size: 70px;
    text-align:center;
    color: white;
    -webkit-animation-duration: 10s;
    -webkit-animation-name: slidein;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: forwards;
    -webkit-animation-direction: normal;
    animation-duration: 10s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-delay: forwards;
    animation-direction: normal;
}
@-webkit-keyframes slidein {
    from {
        margin-left: 0%;
        width: 300%;
        height:94px;
    }
    to {
        margin-left: 100%;
        width: 1240px;
        height:94px;
    }
}
@keyframes slidein {
    from {
        margin-left: 0%;
        width: 300%;
        height:94px;
    }
    to {
        margin-left: 100%;
        width: 1240px;
        height:94px;
    }
}