Marquee 标签和 GWT 的问题
我正在尝试在我的网页上获取一些滚动文本。这 我发现的解决方案是在页面上创建一个静态的空选取框标签 并使用 DOM 解析器访问它并设置我的文本 setInnerHTML 方法。 (我输入的文本是动态的,来自 服务器)
无论如何,文本显示正确,但出现严重故障 动画。 有时它只是不启动,有时它启动并滚动得太快...
是否有任何解决方案可以修复该问题或用另一种类型的文本滚动替换选取框标签。
我正在使用 GWT 2.2!
这是我的字幕标签
<MARQUEE id="marquee" onMouseOver=this.stop() onMouseOut=this.start() scrollAmount=7 direction="left" width=100% height=20%/>
I am trying to get some scrolling text on my web page. The
solution I found is to create a static empty marquee tag on the page
and the access it with the DOM parser and set my text with
setInnerHTML method. (The text I put in is dynamic and comes from the
server)
Anyway the text show up correctly but serverous glitches appear with
the animation.
Sometimes it just dont start sometimes it start and scroll too fast...
Is there any solution to fix that or replace the marquee tag with another type of text scrolling.
Im using GWT 2.2!
This is my marquee Tag
<MARQUEE id="marquee" onMouseOver=this.stop() onMouseOut=this.start() scrollAmount=7 direction="left" width=100% height=20%/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Marquee 通常不能很好地工作 - 它基本上是一个已弃用的元素(请参阅维基百科条目话题)。
但是,如果您需要字幕,您可以
Marquee generally doesn't work very well - it's basically a deprecated element (see the Wikipedia entry on this topic).
However, if you need a marquee, you could