Passing phrase with JavaScript [duplicate]

0

Hello! I'm totally lay in JavaScript, but I'm working on a project that needs to use JS in a single situation and I'm not getting it.

The page has a table that inside a cell passes a sentence that comes from the database, so as not to lose content from a very large sentence or to "pop" the table and page sizes, I need that sentence moving from right to left showing the entire contents of it with javascript.

Can anyone help me?

    
asked by anonymous 09.11.2017 / 14:56

1 answer

1

Is it only necessary to use javascript? HTML solves this for you easy.

<marquee>Essa frase ta andando, se liga...</marquee>
    
09.11.2017 / 15:05