垂直选框移除空间

时间:2012-05-03 17:57:10

标签: html marquee clonenode

我想在页面<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>

的高度相同

1 个答案:

答案 0 :(得分:1)

  1. <marquee>元素是不合规的HTML,不应该使用......但这是一个完全不同的参数。
  2. 就其性质而言,该元素将在内容中滚动,然后再循环播放。
  3. 你可以使用javascript based solutions来做同样的事情但是连续循环。