我有以下
HTML:
<div id="a"><div id="b">aga ad gdas ga gs ds da dgs sd ds dg gdgsdgwa</div></div>
和CSS:
#a,#b { position: absolute; height: 10px; font-size: 10px; white-space:nowrap; display: block; } #a { width: 200px; overflow: hidden; }
和Javascript:
var x = 0; setInterval(function() { if ($('#b').position().left < (-$('#b').width())) { x = 305; } $('#b').css('left',(x--) + 'px') },50);
在Firefox和Internet Explorer中运行良好,但在Google Chrome 17上,它在句子末尾显示一条蓝线. See live jsfiddle demo.
我该如何解决?