文本从其起点向左移动

时间:2018-09-19 09:34:33

标签: html css marquee

文本可能会通过选取框标记从左到右移动,或者为此使用jquery

<marquee direction="left">this is text we provide it</marquee>

enter image description here

<marquee direction="left">this is text</marquee>

2 个答案:

答案 0 :(得分:0)

如果要从左到右,应将direction属性设置为right。 如果没有,则默认设置为从右到左。

请注意:字幕标记很久以前已被弃用,不应使用。

根据MDN:

  

该功能已过时。尽管它可能在某些浏览器中仍然可以使用,但不建议使用它,因为可以随时将其删除。尝试避免使用它。

Documentation on MDN

<marquee direction="right">this is text</marquee>

<marquee>this is text</marquee>

答案 1 :(得分:0)

尝试以下操作> 从左向右移动

<marquee direction="right">Text move from its starting point left to right</marquee>

尝试以下操作> 从右向左移动

<marquee direction="left">Text move from its starting point left to right</marquee>