我想在页面<div>
中加入一些垂直字幕文字,以便自动滚动内容。
我发现以下代码很有用;
<marquee behavior="scroll" direction="up" height="250" scrollamount="2" scrolldelay="10" onmouseover="this.stop()" onmouseout="this.start()">
content goes here<br>
content goes here<br>
content goes here<br>
content goes here
</marquee>
但它在内容之后添加了一个空格。只有在整个文本向上滚动之后(例如重启)才会显示内容。如何避免(或删除)此空白区域?
我在Stack Overflow中发现它here,并且有一些注意到cloneNode()
。我不知道如何实现它。
*注意:高度属性不相关。它与父<div>
答案 0 :(得分:1)
<marquee>
元素是不合规的HTML,不应该使用......但这是一个完全不同的参数。