CSS-moving text from left to right

前端 未结 6 583
自闭症患者
自闭症患者 2020-12-19 05:52

I want to create an animated HTML \"marquee\" that scrolls back and forth on a website:

This is a marquee!
6条回答
  •  独厮守ぢ
    2020-12-19 06:38

    Hi you can achieve your result with use of

    HTML

    This is a marquee!

    CSS

    .wrapper{
        max-width: 400px;
        background: green;
        height: 40px;
        text-align: right;
    }
    
    .marquee {
        background: red;
        white-space: nowrap;
        -webkit-animation: rightThenLeft 4s linear;
    }
    

    see the demo:- http://jsfiddle.net/gXdMc/6/

提交回复
热议问题