文本可能会通过选取框标记从左到右移动,或者为此使用jquery
<marquee direction="left">this is text we provide it</marquee>
<marquee direction="left">this is text</marquee>
答案 0 :(得分:0)
如果要从左到右,应将direction
属性设置为right
。
如果没有,则默认设置为从右到左。
请注意:字幕标记很久以前已被弃用,不应使用。
根据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>