这是我的代码
<marquee scrollamount="3" onmouseover="this.stop()" onmouseout="this.start()">
This is the marquee
</marquee>
这段代码似乎也没有得到验证。
答案 0 :(得分:1)
这是代码:
<marquee onmouseover="this.scrollAmount = 0" onmouseout="this.scrollAmount = 3">
This is the marquee
</marquee>
我希望它能帮到你
答案 1 :(得分:0)
这会起作用我认为
<marquee onmouseover="this.scrollAmount = 0" onmouseout="this.scrollAmount = 3"> This is the marquee</marquee>
但是请注意,marquee标签不应该再被使用,因为它或将很快被弃用,并且应该仅适用于旧的浏览器。它现在可能仍然有用,但可能不会工作更长时间。这种类型的文本格式化应该在JS中完成。希望这会有所帮助:)