我的HTML滚动条在我的网站上滞后。 有人可以帮我吗?
<body style="overflow: hidden">
<marquee
style="direction: rtl"
behavior="scroll"
direction="up"
scrollamount="2"
onmouseover="this.stop()" onmouseout="this.start()">
<font size="4">04/02/2015</font>
<br><font size="5"><a style="color:blue"
href="http://www.vaadness.org/#!revahafinance/c1ob6" target="_parent">
<b>spaciel offer</b></a></font></br>
<br></br>
<p>
<font size="4">28/01/2015</font>
<br><font size="5"><b>MY WEB SITE IS ON LINE!</b></font></br>
</p>
</marquee>
答案 0 :(得分:1)
我不知道是否落后&#34;你的意思是步数,但有一种方法可以设置较低的scrollamount
,旁边是较低的scrolldelay
(默认为80)。
请注意,对于scrolldelay
以下的60
,您需要添加Chrome不支持的属性truespeed
。
另请注意,生产网站中<marquee>
元素非标准且不应使用!
根据HTML或XHTML规范,marquee元素无效。与验证有关的页面作者不应使用此标记。
<body style="overflow: hidden">
<marquee
style="direction: rtl"
behavior="scroll"
direction="up"
scrollamount="1"
scrolldelay="30"
truespeed
onmouseover="this.stop()" onmouseout="this.start()">
>
<font size="4">04/02/2015</font>
<br><font size="5"><a style="color:blue"
href="http://www.vaadness.org/#!revahafinance/c1ob6" target="_parent">
<b>spaciel offer</b></a></font></br>
<br></br>
<p>
<font size="4">28/01/2015</font>
<br><font size="5"><b>MY WEB SITE IS ON LINE!</b></font></br>
</p>
</marquee>
&#13;